mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-03-09 06:48:35 -05:00
Ubuntu 22.04 and GCC11 fixes (#2163)
* Update CEF version * Update Ghoul * Update SGCT * Update codegen * Remove warnings happening on Ubuntu 22.04 with GCC 11 * AppleClang warning fixes * Compile fix for Ubuntu and MacOS * Add Qt 6.2.3 to the CMAKE_PREFIX_PATH
This commit is contained in:
@@ -32,7 +32,7 @@ namespace openspace {
|
||||
class GUIKeyboardHandler : public WebKeyboardHandler {
|
||||
public:
|
||||
GUIKeyboardHandler();
|
||||
virtual ~GUIKeyboardHandler() = default;
|
||||
~GUIKeyboardHandler() override = default;
|
||||
};
|
||||
|
||||
} // namespace openspace
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace openspace {
|
||||
class GUIRenderHandler : public WebRenderHandler {
|
||||
public:
|
||||
GUIRenderHandler();
|
||||
virtual ~GUIRenderHandler();
|
||||
~GUIRenderHandler() override;
|
||||
|
||||
void draw() override;
|
||||
void render() override;
|
||||
|
||||
Reference in New Issue
Block a user