Skip to content

Commit

Permalink
Merge pull request #86 from ioannis-e/constexpr
Browse files Browse the repository at this point in the history
Define constexpr not available in VS2013
  • Loading branch information
jeremyong committed Aug 31, 2015
2 parents 91d397a + 934f84f commit 298952c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/selene.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#pragma once

#if defined(_MSC_VER) && _MSC_VER < 1900 // before MSVS-14 CTP1
#define constexpr const
#endif

#include "selene/State.h"
#include "selene/Tuple.h"

0 comments on commit 298952c

Please sign in to comment.