Browse Source

Fix multiple definition error.

I f'ed up the merge.
Vladimír Vondruš 13 years ago
parent
commit
ea142aa0f4
  1. 2
      src/Platform/GlxApplication.h
  2. 2
      src/Platform/XEglApplication.h

2
src/Platform/GlxApplication.h

@ -82,8 +82,6 @@ class GlxApplication: public AbstractXApplication {
~GlxApplication(); ~GlxApplication();
}; };
GlxApplication::~GlxApplication() = default;
/** @hideinitializer /** @hideinitializer
@brief Entry point for GLX-based applications @brief Entry point for GLX-based applications
@param className Class name @param className Class name

2
src/Platform/XEglApplication.h

@ -83,8 +83,6 @@ class XEglApplication: public AbstractXApplication {
~XEglApplication(); ~XEglApplication();
}; };
XEglApplication::~XEglApplication() = default;
/** @hideinitializer /** @hideinitializer
@brief Entry point for X/EGL-based applications @brief Entry point for X/EGL-based applications
@param className Class name @param className Class name

Loading…
Cancel
Save