@@ -351,71 +351,71 @@ void drawersStaticAsserts()
351
351
#ifdef VCLIB_WITH_IMGUI
352
352
using namespace vcl ::imgui;
353
353
354
- using RendererTypeID = Renderer<WMG, Canvas, ImguiDrawer >;
354
+ using RendererTypeID = Renderer<WMG, Canvas, ImGuiDrawer >;
355
355
356
356
// ImguiDrawer
357
357
static_assert (
358
- DrawerConcept<ImguiDrawer <RendererTypeID>>,
358
+ DrawerConcept<ImGuiDrawer <RendererTypeID>>,
359
359
" ImguiDrawer does not satisfy the DrawerConcept" );
360
360
static_assert (
361
- DrawerConcept<const ImguiDrawer <RendererTypeID>>,
361
+ DrawerConcept<const ImGuiDrawer <RendererTypeID>>,
362
362
" const ImguiDrawer does not satisfy the DrawerConcept" );
363
363
static_assert (
364
- DrawerConcept<ImguiDrawer <RendererTypeID>&>,
364
+ DrawerConcept<ImGuiDrawer <RendererTypeID>&>,
365
365
" ImguiDrawer& does not satisfy the DrawerConcept" );
366
366
static_assert (
367
- DrawerConcept<const ImguiDrawer <RendererTypeID>&>,
367
+ DrawerConcept<const ImGuiDrawer <RendererTypeID>&>,
368
368
" const ImguiDrawer& does not satisfy the DrawerConcept" );
369
369
static_assert (
370
- DrawerConcept<ImguiDrawer <RendererTypeID>&&>,
370
+ DrawerConcept<ImGuiDrawer <RendererTypeID>&&>,
371
371
" ImguiDrawer&& does not satisfy the DrawerConcept" );
372
372
373
373
static_assert (
374
- EventDrawerConcept<ImguiDrawer <RendererTypeID>>,
374
+ EventDrawerConcept<ImGuiDrawer <RendererTypeID>>,
375
375
" ImguiDrawer does not satisfy the EventDrawerConcept" );
376
376
static_assert (
377
- EventDrawerConcept<const ImguiDrawer <RendererTypeID>>,
377
+ EventDrawerConcept<const ImGuiDrawer <RendererTypeID>>,
378
378
" const ImguiDrawer does not satisfy the EventDrawerConcept" );
379
379
static_assert (
380
- EventDrawerConcept<ImguiDrawer <RendererTypeID>&>,
380
+ EventDrawerConcept<ImGuiDrawer <RendererTypeID>&>,
381
381
" ImguiDrawer& does not satisfy the EventDrawerConcept" );
382
382
static_assert (
383
- EventDrawerConcept<const ImguiDrawer <RendererTypeID>&>,
383
+ EventDrawerConcept<const ImGuiDrawer <RendererTypeID>&>,
384
384
" const ImguiDrawer& does not satisfy the EventDrawerConcept" );
385
385
static_assert (
386
- EventDrawerConcept<ImguiDrawer <RendererTypeID>&&>,
386
+ EventDrawerConcept<ImGuiDrawer <RendererTypeID>&&>,
387
387
" ImguiDrawer&& does not satisfy the EventDrawerConcept" );
388
388
389
389
static_assert (
390
- CanBlockEventDrawerConcept<ImguiDrawer <RendererTypeID>>,
390
+ CanBlockEventDrawerConcept<ImGuiDrawer <RendererTypeID>>,
391
391
" ImguiDrawer does not satisfy the CanBlockEventDrawerConcept" );
392
392
static_assert (
393
- CanBlockEventDrawerConcept<const ImguiDrawer <RendererTypeID>>,
393
+ CanBlockEventDrawerConcept<const ImGuiDrawer <RendererTypeID>>,
394
394
" const ImguiDrawer does not satisfy the CanBlockEventDrawerConcept" );
395
395
static_assert (
396
- CanBlockEventDrawerConcept<ImguiDrawer <RendererTypeID>&>,
396
+ CanBlockEventDrawerConcept<ImGuiDrawer <RendererTypeID>&>,
397
397
" ImguiDrawer& does not satisfy the CanBlockEventDrawerConcept" );
398
398
static_assert (
399
- CanBlockEventDrawerConcept<const ImguiDrawer <RendererTypeID>&>,
399
+ CanBlockEventDrawerConcept<const ImGuiDrawer <RendererTypeID>&>,
400
400
" const ImguiDrawer& does not satisfy the CanBlockEventDrawerConcept" );
401
401
static_assert (
402
- CanBlockEventDrawerConcept<ImguiDrawer <RendererTypeID>&&>,
402
+ CanBlockEventDrawerConcept<ImGuiDrawer <RendererTypeID>&&>,
403
403
" ImguiDrawer&& does not satisfy the CanBlockEventDrawerConcept" );
404
404
405
405
static_assert (
406
- !CantBlockEventDrawerConcept<ImguiDrawer <RendererTypeID>>,
406
+ !CantBlockEventDrawerConcept<ImGuiDrawer <RendererTypeID>>,
407
407
" ImguiDrawer does satisfy the CantBlockEventDrawerConcept" );
408
408
static_assert (
409
- !CantBlockEventDrawerConcept<const ImguiDrawer <RendererTypeID>>,
409
+ !CantBlockEventDrawerConcept<const ImGuiDrawer <RendererTypeID>>,
410
410
" const ImguiDrawer does satisfy the CantBlockEventDrawerConcept" );
411
411
static_assert (
412
- !CantBlockEventDrawerConcept<ImguiDrawer <RendererTypeID>&>,
412
+ !CantBlockEventDrawerConcept<ImGuiDrawer <RendererTypeID>&>,
413
413
" ImguiDrawer& does satisfy the CantBlockEventDrawerConcept" );
414
414
static_assert (
415
- !CantBlockEventDrawerConcept<const ImguiDrawer <RendererTypeID>&>,
415
+ !CantBlockEventDrawerConcept<const ImGuiDrawer <RendererTypeID>&>,
416
416
" const ImguiDrawer& does satisfy the CantBlockEventDrawerConcept" );
417
417
static_assert (
418
- !CantBlockEventDrawerConcept<ImguiDrawer <RendererTypeID>&&>,
418
+ !CantBlockEventDrawerConcept<ImGuiDrawer <RendererTypeID>&&>,
419
419
" ImguiDrawer&& does satisfy the CantBlockEventDrawerConcept" );
420
420
#endif
421
421
}
0 commit comments