aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/headerpath.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2018-09-13 12:58:38 +0200
committerTobias Hunger <tobias.hunger@qt.io>2018-09-13 11:32:59 +0000
commitc763d4d78711d4fdf01ce8aa713383a0a131a39e (patch)
tree531eb6fdc5cd023d831d0fdd5d55679bb58e44d9 /src/plugins/projectexplorer/headerpath.h
parent11245564da74a3054de4e312b5e120811cc4a536 (diff)
ProjectExplorer: Remove HeaderPath::isFrameworkPath
None of the other types has a query function, so remove this one, too. Change-Id: I936d162e092c8f9361b0e3bb86676e68905d2f4b Reviewed-by: Marco Bubke <marco.bubke@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/headerpath.h')
-rw-r--r--src/plugins/projectexplorer/headerpath.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/projectexplorer/headerpath.h b/src/plugins/projectexplorer/headerpath.h
index 932c256f33..39d668aeb8 100644
--- a/src/plugins/projectexplorer/headerpath.h
+++ b/src/plugins/projectexplorer/headerpath.h
@@ -44,11 +44,6 @@ public:
: path(path), type(type)
{ }
- bool isFrameworkPath() const
- {
- return type == HeaderPathType::Framework;
- }
-
bool operator==(const HeaderPath &other) const
{
return type == other.type && path == other.path;