pplux / imgui-app

Dear IMGUI + Render + Window handling, amalgamation in two files ready to use
MIT License
161 stars 17 forks source link

Remove pragma once from amalgamated source file #2

Closed richardhozak closed 1 year ago

richardhozak commented 1 year ago

This prevents GCC warning #pragma once in main file which cannot be disabled (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89808).

Note that you can disable this when using clang with -Wno-pragma-once-outside-header.

See more: https://stackoverflow.com/questions/56563679/gcc-precompiled-header-pragma-once-in-main-file

pplux commented 1 year ago

ah! indeed, thanks I will have a look at it, sorry I did not see the issue being there :)