diff --git a/src/Query.h b/src/Query.h index 3e97e4e6c..4cd2905da 100644 --- a/src/Query.h +++ b/src/Query.h @@ -437,7 +437,6 @@ class TimeQuery: public AbstractQuery { #endif }; - inline AbstractQuery::AbstractQuery(AbstractQuery&& other) noexcept: _id(other._id), target(other.target) { other._id = 0; } diff --git a/src/Test/AbstractQueryGLTest.cpp b/src/Test/AbstractQueryGLTest.cpp index 39c00c777..750f07286 100644 --- a/src/Test/AbstractQueryGLTest.cpp +++ b/src/Test/AbstractQueryGLTest.cpp @@ -22,8 +22,6 @@ DEALINGS IN THE SOFTWARE. */ -#include "Context.h" -#include "Extensions.h" #include "Query.h" #include "Test/AbstractOpenGLTester.h"