Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gauthier Quesnel
irritator
Commits
083f6b5d
Commit
083f6b5d
authored
Aug 19, 2020
by
Gauthier Quesnel
Browse files
gui: try to fix char8_t warning
parent
059ad5f5
Pipeline
#16516
passed with stage
in 1 minute and 39 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
app/gui/node-editor.cpp
View file @
083f6b5d
...
...
@@ -2836,7 +2836,11 @@ initialize_observation(irt::editor* ed) noexcept
"observation file: %s in "
"%s
\n
"
,
obs
->
name
.
c_str
(),
#if _WIN32
ed
->
observation_directory
.
u8string
().
c_str
());
#else
reinterpret_cast
<
const
char
*>
(
ed
->
observation_directory
.
u8string
().
c_str
()));
#endif
}
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment