Skip to content

Commit 4672afd

Browse files
Fixed code style issues from pre-commit hooks
1 parent ca778ac commit 4672afd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Common/include/tracy_structure.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
#pragma once
3434

3535
#ifdef HAVE_TRACY
36-
# include "tracy/Tracy.hpp"
37-
# define SU2_ZONE_SCOPED ZoneScoped
38-
# define SU2_ZONE_SCOPED_N(name) ZoneScopedN(name)
36+
#include "tracy/Tracy.hpp"
37+
#define SU2_ZONE_SCOPED ZoneScoped
38+
#define SU2_ZONE_SCOPED_N(name) ZoneScopedN(name)
3939
#else
40-
# define SU2_ZONE_SCOPED
41-
# define SU2_ZONE_SCOPED_N(name)
40+
#define SU2_ZONE_SCOPED
41+
#define SU2_ZONE_SCOPED_N(name)
4242
#endif

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ if get_option('enable_tracy')
118118
tracy_dep = dependency('tracy', static: true)
119119
su2_deps += tracy_dep
120120
su2_cpp_args += '-DHAVE_TRACY'
121-
121+
122122
# Add build type check
123123
if get_option('buildtype') != 'debugoptimized'
124124
warning('For optimal Tracy profiling, use --buildtype=debugoptimized')

0 commit comments

Comments
 (0)