Fixed: #1193 Clean up code.

This commit is contained in:
dnk-88 2011-10-23 00:32:49 +03:00
parent fda7bee758
commit 843ab1b4e7

View file

@ -64,14 +64,14 @@ PluginSpec::PluginSpec()
// Compilation mode specific suffixes // Compilation mode specific suffixes
#ifdef NL_OS_WINDOWS #ifdef NL_OS_WINDOWS
# if defined(NL_DEBUG) # if defined(NL_DEBUG)
m_suffix = "_d.dll"; m_suffix = "_d.dll";
# elif defined(NL_RELEASE) # elif defined(NL_RELEASE)
m_suffix = "_r.dll"; m_suffix = "_r.dll";
# else # else
# error "Unknown compilation mode, can't build suffix" # error "Unknown compilation mode, can't build suffix"
# endif # endif
#elif defined (NL_OS_UNIX) #elif defined (NL_OS_UNIX)
m_suffix = ".so"; m_suffix = ".so";
#else #else
# error "You must define the lib suffix for your platform" # error "You must define the lib suffix for your platform"
#endif #endif