Don't use const qualified parameters in declarations.
This fixes warnings from clang-tidy like this:

    parameter 'v_max' is const-qualified in the function declaration;
    const-qualification of parameters only has an effect in function definitions

Since values (rather than references or pointers) don't need to be
const, they don't need to be marked that way in the function declaration.
1 parent 79bb4ce commit 17c567c3a9f43cbb7b82af4295b91cde3366cd38
@Bruce Mitchener Bruce Mitchener authored on 8 Mar 2019
omar committed on 8 Mar 2019
Showing 3 changed files
View
imgui.cpp
View
imgui.h
View
imgui_internal.h