summaryrefslogtreecommitdiffstats
path: root/gfx/angle/src/libANGLE/Version.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/angle/src/libANGLE/Version.h')
-rwxr-xr-xgfx/angle/src/libANGLE/Version.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gfx/angle/src/libANGLE/Version.h b/gfx/angle/src/libANGLE/Version.h
index 4c9730c7b..62985d0da 100755
--- a/gfx/angle/src/libANGLE/Version.h
+++ b/gfx/angle/src/libANGLE/Version.h
@@ -16,8 +16,8 @@ namespace gl
struct Version
{
- constexpr Version();
- constexpr Version(GLuint major, GLuint minor);
+ Version();
+ Version(GLuint major, GLuint minor);
GLuint major;
GLuint minor;
@@ -26,9 +26,8 @@ struct Version
bool operator==(const Version &a, const Version &b);
bool operator!=(const Version &a, const Version &b);
bool operator>=(const Version &a, const Version &b);
-bool operator<=(const Version &a, const Version &b);
bool operator<(const Version &a, const Version &b);
-bool operator>(const Version &a, const Version &b);
+
}
#include "Version.inl"