Skip to content

Commit

Permalink
Merge branch '14-support-launcher-without-console-io'. See #14
Browse files Browse the repository at this point in the history
* 14-support-launcher-without-console-io:
  Avoid linker error by including "cstdlib.h" before "windows.h"
  • Loading branch information
jcfr committed Apr 8, 2012
2 parents 3b069bb + 82490a5 commit 5d56295
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
#include "ctkAppLauncher.h"
#include "ctkCommandLineParser.h"

// STD includes
#include <cstdlib>

// Windows includes
#ifdef Q_OS_WIN32
# include <windows.h>
#endif

// STD includes
#include <cstdlib>

// --------------------------------------------------------------------------
int appLauncherMain(int argc, char** argv)
{
Expand Down

0 comments on commit 5d56295

Please sign in to comment.