mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
Added VS2013 files to gitignore.
This commit is contained in:
parent
1f22cdd19e
commit
24c76d3e03
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -5,3 +5,13 @@ demacro.txt
|
||||||
Shinobi2
|
Shinobi2
|
||||||
dev.*
|
dev.*
|
||||||
main.cpp
|
main.cpp
|
||||||
|
lua-5.2.2/
|
||||||
|
Debug/
|
||||||
|
Release/
|
||||||
|
x64/
|
||||||
|
*.vcxproj
|
||||||
|
*.vcxproj.filters
|
||||||
|
*.tlog
|
||||||
|
*.lastbuildstate
|
||||||
|
*.idb
|
||||||
|
*.sln
|
||||||
|
|
|
@ -32,7 +32,7 @@ template<class T, class...>
|
||||||
struct are_same : std::true_type {};
|
struct are_same : std::true_type {};
|
||||||
|
|
||||||
template<class T, class U, class... Args>
|
template<class T, class U, class... Args>
|
||||||
struct are_same<T, U, Args...> : std::integral_constant<bool, std::is_same<T,U>{} && are_same<T, Args...>{}> {};
|
struct are_same<T, U, Args...> : std::integral_constant<bool, std::is_same<T,U>::value && are_same<T, Args...>::value> {};
|
||||||
|
|
||||||
int atpanic(lua_State* L) {
|
int atpanic(lua_State* L) {
|
||||||
throw sol_error(lua_tostring(L, -1));
|
throw sol_error(lua_tostring(L, -1));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user