aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/qbs/parser/parsercommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/qbs/parser/parsercommand.h')
-rw-r--r--src/app/qbs/parser/parsercommand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/qbs/parser/parsercommand.h b/src/app/qbs/parser/parsercommand.h
index 11b589a2e..649563ba1 100644
--- a/src/app/qbs/parser/parsercommand.h
+++ b/src/app/qbs/parser/parsercommand.h
@@ -42,7 +42,7 @@
#include "commandlineoption.h"
#include "commandtype.h"
-#include <tools/set.h>
+#include <set>
namespace qbs {
class CommandLineOptionPool;
@@ -78,7 +78,7 @@ private:
virtual QList<CommandLineOption::Type> supportedOptions() const = 0;
QStringList m_additionalArguments;
- Internal::Set<CommandLineOption *> m_usedOptions;
+ std::set<CommandLineOption *> m_usedOptions;
const CommandLineOptionPool &m_optionPool;
};