From b27ba44f0f3efd305d7e49567ffbda5af45bd56b Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Fri, 1 Jan 2016 14:23:40 +0000 Subject: [PATCH] Remove `std::` prefix in example --- example/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/src/main.cpp b/example/src/main.cpp index 95c3000..1fb5f53 100644 --- a/example/src/main.cpp +++ b/example/src/main.cpp @@ -9,7 +9,7 @@ bool fullscreen = false; if(argc > 0){ - std::string fullscreenFlag = "-f"; + string fullscreenFlag = "-f"; for(int i = 0; i < argc; i++){ if(strcmp(argv[i], fullscreenFlag.c_str()) == 0){ fullscreen = true;