Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GameDevWeek
Dependencies
Cpp
mirrage
Commits
fc386408
Commit
fc386408
authored
Mar 28, 2019
by
Georg Schäfer
Browse files
fix compilation error in maybe
parent
e074943f
Pipeline
#2873
passed with stage
in 13 minutes and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/mirrage/asset/include/mirrage/asset/asset_manager.hxx
View file @
fc386408
...
...
@@ -25,7 +25,7 @@ namespace mirrage::asset {
if
(
_cached_result
)
return
util
::
justPtr
(
_cached_result
);
return
ready
()
?
util
::
nothing
:
get_blocking
();
return
ready
()
?
util
::
nothing
:
util
::
maybe
<
const
R
&>
(
get_blocking
()
)
;
}
template
<
class
R
>
...
...
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