CI: test with ImTextureID as pointer to catch accidental reuse of const (#4060)

This commit is contained in:
ocornut 2021-04-26 10:18:18 +02:00
parent 04e98fbe6b
commit 7cdb3850e7
1 changed files with 2 additions and 1 deletions

View File

@ -254,10 +254,11 @@ jobs:
EOF
g++ -I. -Wall -Wformat -o example_single_file example_single_file.cpp
- name: Build example_null (with large ImDrawIdx)
- name: Build example_null (with large ImDrawIdx + pointer ImTextureID)
run: |
cat > example_single_file.cpp <<'EOF'
#define ImTextureID void*
#define ImDrawIdx unsigned int
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"