From af3950c65e8d544e399523b47ad3461065c783fa Mon Sep 17 00:00:00 2001 From: arookas Date: Mon, 28 Dec 2015 12:33:42 -0500 Subject: [PATCH] Fixed: missing commas to option table. --- premake5.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/premake5.lua b/premake5.lua index 9865590..80e9b18 100644 --- a/premake5.lua +++ b/premake5.lua @@ -1,8 +1,8 @@ -- options newoption { trigger = "var-alloc", - value = "MODE" - description = "Sets how the compiler should allocate variables" + value = "MODE", + description = "Sets how the compiler should allocate variables", allowed = { { "pack", "Recycle slices as they become unused" }, { "inc", "Every variable gets its own slice" }