Skip to content

Commit

Permalink
Merge pull request #77 from tusharpm/fix_win_build
Browse files Browse the repository at this point in the history
Fix Visual Studio build
  • Loading branch information
TheJJ committed Oct 14, 2019
2 parents 5885c3a + 8954717 commit 08cc612
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions nyan/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

#pragma once

#ifdef _MSC_VER
// Allow using alternative operator representation with non-conforming compiler
#include <ciso646>
#endif

#include <cstddef>
#include <limits>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions nyan/error.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <exception>
#include <functional>
#include <memory>
#include <stdexcept>
#include <string>
#include <vector>

Expand Down
1 change: 0 additions & 1 deletion nyan/location.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright 2016-2019 the nyan authors, LGPLv3+. See copying.md for legal info.
#pragma once

#include <ciso646>
#include <memory>
#include <sstream>
#include <string>
Expand Down

0 comments on commit 08cc612

Please sign in to comment.