From c2a29aede9b820ffedc88e354e38627827f25746 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 18 Aug 2013 22:05:53 -0700 Subject: [PATCH] Fixed Haiku build (thanks Alexander!) --- src/main/beos/SDL_BApp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/beos/SDL_BApp.h b/src/main/beos/SDL_BApp.h index 2a64455b68160..9b731e3e7ba6a 100644 --- a/src/main/beos/SDL_BApp.h +++ b/src/main/beos/SDL_BApp.h @@ -371,7 +371,7 @@ class SDL_BApp : public BApplication { /* Members */ - vector _window_map; /* Keeps track of SDL_Windows by index-id*/ + std::vector _window_map; /* Keeps track of SDL_Windows by index-id */ display_mode *_saved_mode; BGLView *_current_context;