Skip to content

Commit

Permalink
LUA_VERSION_RELEASE should be 0, since that's the minimum version the…
Browse files Browse the repository at this point in the history
… binding is directly compatibile with.
  • Loading branch information
mdparker committed Jan 5, 2015
1 parent c2b9df1 commit 888e7bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/derelict/lua/types.d
Expand Up @@ -28,10 +28,11 @@ DEALINGS IN THE SOFTWARE.
module derelict.lua.types;

//lua.h
// The minimum version of Lua with which this binding is compatible.
enum LUA_VERSION_MAJOR ="5";
enum LUA_VERSION_MINOR ="2";
enum LUA_VERSION_NUM = 502;
enum LUA_VERSION_RELEASE = "1";
enum LUA_VERSION_RELEASE = "0";

enum LUA_VERSION = "Lua " ~ LUA_VERSION_MAJOR ~ "." ~ LUA_VERSION_MINOR;
enum LUA_RELEASE = LUA_VERSION ~ "." ~ LUA_VERSION_RELEASE;
Expand Down

0 comments on commit 888e7bd

Please sign in to comment.