@@ -246,7 +246,7 @@ jobs:
246
246
#include "examples/example_null/main.cpp"
247
247
248
248
EOF
249
- g++ -I. -Wall -Wformat -Wextra -Werror -Wno-zero-as-null-pointer-constant -Wno-double-promotion -Wno-variadic-macros -Wno-empty-body -o example_single_file example_single_file.cpp
249
+ g++ -I. -std=c++11 - Wall -Wformat -Wextra -Werror -Wno-zero-as-null-pointer-constant -Wno-double-promotion -Wno-variadic-macros -Wno-empty-body -o example_single_file example_single_file.cpp
250
250
251
251
- name : Build example_null (freetype)
252
252
run : |
@@ -262,7 +262,7 @@ jobs:
262
262
#include "examples/example_null/main.cpp"
263
263
264
264
EOF
265
- g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
265
+ g++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
266
266
267
267
- name : Build example_null (with ImWchar32)
268
268
run : |
@@ -274,7 +274,7 @@ jobs:
274
274
#include "examples/example_null/main.cpp"
275
275
276
276
EOF
277
- g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
277
+ g++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
278
278
279
279
- name : Build example_null (with large ImDrawIdx + pointer ImTextureID)
280
280
run : |
@@ -287,7 +287,7 @@ jobs:
287
287
#include "examples/example_null/main.cpp"
288
288
289
289
EOF
290
- g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
290
+ g++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
291
291
292
292
- name : Build example_null (with IMGUI_DISABLE_OBSOLETE_FUNCTIONS)
293
293
run : |
@@ -299,7 +299,7 @@ jobs:
299
299
#include "examples/example_null/main.cpp"
300
300
301
301
EOF
302
- g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
302
+ g++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
303
303
304
304
- name : Build example_null (with IMGUI_DISABLE_OBSOLETE_KEYIO)
305
305
run : |
@@ -311,7 +311,7 @@ jobs:
311
311
#include "examples/example_null/main.cpp"
312
312
313
313
EOF
314
- g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
314
+ g++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
315
315
316
316
- name : Build example_null (with IMGUI_DISABLE_DEMO_WINDOWS and IMGUI_DISABLE_METRICS_WINDOW)
317
317
run : |
@@ -324,7 +324,7 @@ jobs:
324
324
#include "examples/example_null/main.cpp"
325
325
326
326
EOF
327
- g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
327
+ g++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
328
328
329
329
- name : Build example_null (with IMGUI_DISABLE_FILE_FUNCTIONS)
330
330
run : |
@@ -336,7 +336,7 @@ jobs:
336
336
#include "examples/example_null/main.cpp"
337
337
338
338
EOF
339
- g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
339
+ g++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
340
340
341
341
- name : Build example_null (with IMGUI_USE_BGRA_PACKED_COLOR)
342
342
run : |
@@ -348,7 +348,7 @@ jobs:
348
348
#include "examples/example_null/main.cpp"
349
349
350
350
EOF
351
- g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
351
+ g++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
352
352
353
353
- name : Build example_null (with IM_VEC2_CLASS_EXTRA and IM_VEC4_CLASS_EXTRA)
354
354
run : |
@@ -368,7 +368,7 @@ jobs:
368
368
#include "examples/example_null/main.cpp"
369
369
370
370
EOF
371
- g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
371
+ g++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
372
372
373
373
- name : Build example_null (without c++ runtime, Clang)
374
374
run : |
@@ -380,7 +380,7 @@ jobs:
380
380
#include "examples/example_null/main.cpp"
381
381
382
382
EOF
383
- clang++ -I. -Wall -Wformat -nodefaultlibs -fno-rtti -fno-exceptions -fno-threadsafe-statics -lc -lm -o example_single_file example_single_file.cpp
383
+ clang++ -I. -std=c++11 - Wall -Wformat -nodefaultlibs -fno-rtti -fno-exceptions -fno-threadsafe-statics -lc -lm -o example_single_file example_single_file.cpp
384
384
385
385
- name : Build example_glfw_opengl2
386
386
run : make -C examples/example_glfw_opengl2
@@ -397,7 +397,7 @@ jobs:
397
397
run : make -C examples/example_sdl_opengl3
398
398
399
399
- name : Build with IMGUI_IMPL_VULKAN_NO_PROTOTYPES
400
- run : g++ -c -I. -DIMGUI_IMPL_VULKAN_NO_PROTOTYPES=1 backends/imgui_impl_vulkan.cpp
400
+ run : g++ -c -I. -std=c++11 - DIMGUI_IMPL_VULKAN_NO_PROTOTYPES=1 backends/imgui_impl_vulkan.cpp
401
401
402
402
MacOS :
403
403
runs-on : macos-latest
@@ -420,7 +420,7 @@ jobs:
420
420
#include "examples/example_null/main.cpp"
421
421
422
422
EOF
423
- clang++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
423
+ clang++ -I. -std=c++11 - Wall -Wformat -o example_single_file example_single_file.cpp
424
424
425
425
- name : Build example_null (without c++ runtime)
426
426
run : |
@@ -431,7 +431,7 @@ jobs:
431
431
#include "examples/example_null/main.cpp"
432
432
433
433
EOF
434
- clang++ -I. -Wall -Wformat -nodefaultlibs -fno-rtti -fno-exceptions -fno-threadsafe-statics -lc -lm -o example_single_file example_single_file.cpp
434
+ clang++ -I. -std=c++11 - Wall -Wformat -nodefaultlibs -fno-rtti -fno-exceptions -fno-threadsafe-statics -lc -lm -o example_single_file example_single_file.cpp
435
435
436
436
- name : Build example_glfw_opengl2
437
437
run : make -C examples/example_glfw_opengl2
0 commit comments