diff --git a/src/Platform/WindowlessGlxApplication.cpp b/src/Platform/WindowlessGlxApplication.cpp index a439e5496..45274c5b7 100644 --- a/src/Platform/WindowlessGlxApplication.cpp +++ b/src/Platform/WindowlessGlxApplication.cpp @@ -40,7 +40,8 @@ WindowlessGlxApplication::WindowlessGlxApplication(const Arguments&, const Confi } WindowlessGlxApplication::WindowlessGlxApplication(const Arguments&): c(nullptr) { - createContext({}); + /* GCC 4.5 can't handle {} here (wtf) */ + createContext(Configuration()); } #ifndef CORRADE_GCC45_COMPATIBILITY