Skip to content

Commit

Permalink
Merge pull request #2 from alexismartin/master
Browse files Browse the repository at this point in the history
Mac OSX specific fixes to make compilation work
  • Loading branch information
Marukyu committed Apr 23, 2016
2 parents 2656d04 + f3cf091 commit bc9b448
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Client/Editor/SelectionPanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <Shared/Utils/Utilities.hpp>
#include <algorithm>
#include <memory>
#include <cmath>

namespace gui2
{
Expand Down
2 changes: 1 addition & 1 deletion src/Shared/Utils/OSDetect.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define WOS_WINDOWS
#elif defined __linux__ || defined __linux || defined linux
#define WOS_LINUX
#elif defined __APPLE__ && TARGET_OS_MAC
#elif defined __APPLE__ || defined TARGET_OS_MAC
#define WOS_OSX
#else
#error Unsupported operating system.
Expand Down

0 comments on commit bc9b448

Please sign in to comment.