Skip to content

Commit

Permalink
Include platform_win.h in main.cpp
Browse files Browse the repository at this point in the history
Needed for GetUserDefaultLCID.
  • Loading branch information
jbytheway committed Jan 26, 2019
1 parent 3497b79 commit 94c0396
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
#include <iostream>
#include <locale>
#include <map>
#if (!(defined _WIN32 || defined WINDOWS))
#if defined _WIN32 || defined WINDOWS
#include "platform_win.h"
#else
#include <signal.h>
#endif
#include <stdexcept>
Expand Down

0 comments on commit 94c0396

Please sign in to comment.