11 lines
267 B
C++
11 lines
267 B
C++
// https://github.com/vinniefalco/LuaBridge
|
|
//
|
|
// Copyright 2019, Dmitry Tarakanov
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#if !defined (LUABRIDGE_NO_CXX11) && (__cplusplus >= 201103L || (defined (_MSC_VER) && _MSC_VER >= 1900))
|
|
#define LUABRIDGE_CXX11
|
|
#endif
|