diff options
author | Marius Kintel <marius@kintel.net> | 2013-03-07 01:45:13 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-03-07 01:45:13 (GMT) |
commit | 660301589762048cd33ff54b9b1ea586be8062f2 (patch) | |
tree | 291e3f6d47a1f39ea1765958a550b8983f58dee2 | |
parent | cfc67f928fc86310614940f126d9f6c76d4e9ea7 (diff) |
Workaround for QTBUG-22829
-rw-r--r-- | src/value.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/value.h b/src/value.h index 24fbf49..0445ff4 100644 --- a/src/value.h +++ b/src/value.h @@ -3,8 +3,12 @@ #include <vector> #include <string> + +// Workaround for https://bugreports.qt-project.org/browse/QTBUG-22829 +#ifndef Q_MOC_RUN #include <boost/variant.hpp> #include <boost/lexical_cast.hpp> +#endif class QuotedString : public std::string { |