Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
akukh committed May 8, 2024
1 parent 2636771 commit 2a388db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flux-config/flux/config/compiler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#if defined(__clang__)
# define FLUX_CLANG_FULL_VERSION \
(__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
(__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
// For compatibility with existing code that compiles with MSVC,
// clang defines the _MSC_VER and _MSC_FULL_VER macros.
# if defined(_MSC_VER)
Expand Down
3 changes: 2 additions & 1 deletion flux-config/flux/config/graphics.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#ifdef FLUX_TARGET_OPENGL
# define FLUX_OPENGL_FULL_VERSION FLUX_JOIN(FLUX_OPENGL_VERSION_MAJOR, FLUX_JOIN(FLUX_OPENGL_VERSION_MINOR, 0))
# define FLUX_OPENGL_FULL_VERSION \
FLUX_JOIN(FLUX_OPENGL_VERSION_MAJOR, FLUX_JOIN(FLUX_OPENGL_VERSION_MINOR, 0))
# define FLUX_GLSL_VERSION "#version " FLUX_TO_STRING(FLUX_OPENGL_FULL_VERSION)
#endif

0 comments on commit 2a388db

Please sign in to comment.