From e97713ab34986360cd43a532cab3347cd0c0e186 Mon Sep 17 00:00:00 2001 From: saschawillems Date: Mon, 4 Jul 2016 19:12:30 +0200 Subject: [PATCH] Added missing line for linux example main macro (Fixes #193) --- base/vulkanexamplebase.h | 1 + 1 file changed, 1 insertion(+) diff --git a/base/vulkanexamplebase.h b/base/vulkanexamplebase.h index 1900c4f0..3938cb8d 100644 --- a/base/vulkanexamplebase.h +++ b/base/vulkanexamplebase.h @@ -426,6 +426,7 @@ static void handleEvent(const xcb_generic_event_t *event) \ { \ vulkanExample->handleEvent(event); \ } \ +} \ int main(const int argc, const char *argv[]) \ { \ vulkanExample = new VulkanExample(); \