Commit 9db3117e by John Kessenich

Merge pull request #278 from greg-lunarg/greg-mr3

Build: fix for -Werror=non-virtual-dtor for Android system builds
parents 36962c7a 2713ed73
...@@ -356,6 +356,9 @@ public: ...@@ -356,6 +356,9 @@ public:
// Signals that the parser will no longer use the contents of the // Signals that the parser will no longer use the contents of the
// specified IncludeResult. // specified IncludeResult.
virtual void releaseInclude(IncludeResult* result) = 0; virtual void releaseInclude(IncludeResult* result) = 0;
#ifdef __ANDROID__
virtual ~Includer() {} // Pacify -Werror=non-virtual-dtor
#endif
}; };
// Returns an error message for any #include directive. // Returns an error message for any #include directive.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment