Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ImageFusion
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christof Kaufmann
ImageFusion
Commits
57ebca16
Commit
57ebca16
authored
1 year ago
by
Christof Kaufmann
Browse files
Options
Downloads
Patches
Plain Diff
build: Limit fixes for logging custom type to fmt >= 9.0.0
parent
d08f4c0c
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/logging.h
+17
-15
17 additions, 15 deletions
include/logging.h
with
17 additions
and
15 deletions
include/logging.h
+
17
−
15
View file @
57ebca16
...
@@ -48,6 +48,7 @@
...
@@ -48,6 +48,7 @@
#include
"type.h"
#include
"type.h"
#include
"optionparser.h"
#include
"optionparser.h"
#include
"fileformat.h"
#include
"fileformat.h"
#if FMT_VERSION >= 90000
template
<
>
struct
fmt
::
formatter
<
imagefusion
::
Size
>
:
ostream_formatter
{};
template
<
>
struct
fmt
::
formatter
<
imagefusion
::
Size
>
:
ostream_formatter
{};
template
<
>
struct
fmt
::
formatter
<
imagefusion
::
Dimensions
>
:
ostream_formatter
{};
template
<
>
struct
fmt
::
formatter
<
imagefusion
::
Dimensions
>
:
ostream_formatter
{};
template
<
>
struct
fmt
::
formatter
<
imagefusion
::
Point
>
:
ostream_formatter
{};
template
<
>
struct
fmt
::
formatter
<
imagefusion
::
Point
>
:
ostream_formatter
{};
...
@@ -64,6 +65,7 @@
...
@@ -64,6 +65,7 @@
template
<
>
struct
fmt
::
formatter
<
imagefusion
::
FileFormat
>
:
ostream_formatter
{};
template
<
>
struct
fmt
::
formatter
<
imagefusion
::
FileFormat
>
:
ostream_formatter
{};
#endif
#endif
#endif
#define SPDLOG_SINGLE_TRACE(...) _Pragma("omp single nowait")\
#define SPDLOG_SINGLE_TRACE(...) _Pragma("omp single nowait")\
SPDLOG_TRACE(__VA_ARGS__)
SPDLOG_TRACE(__VA_ARGS__)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment