diff options
Diffstat (limited to 'compat')
-rw-r--r-- | compat/util.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compat/util.hpp b/compat/util.hpp index 5b9e2c69..19ee1064 100644 --- a/compat/util.hpp +++ b/compat/util.hpp @@ -10,12 +10,15 @@ #include <utility> #include <QSharedPointer> +#include <QDebug> #define progn(...) ([&]() { __VA_ARGS__ }()) template<typename t> using mem = std::shared_ptr<t>; template<typename t> using ptr = std::unique_ptr<t>; -#if defined(_MSC_VER) && !defined(Q_CREATOR_RUN) +#ifdef Q_CREATOR_RUN +# define DEFUN_WARN_UNUSED +#elif defined(_MSC_VER) # define DEFUN_WARN_UNUSED _Check_return_ #else # define DEFUN_WARN_UNUSED __attribute__((warn_unused_result)) |