diff options
author | David Robillard <d@drobilla.net> | 2020-12-16 18:36:30 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-16 18:36:30 +0100 |
commit | dd72175482f433f90e2eb90ae31cd73c67c33997 (patch) | |
tree | 2c345b52793420da52e4e8a0cb80c8a504976d5d /src/event_to_string.cpp | |
parent | 6b49e1320b3d3a6abc1ef9d75d804d3e07380661 (diff) | |
download | patchage-dd72175482f433f90e2eb90ae31cd73c67c33997.tar.gz patchage-dd72175482f433f90e2eb90ae31cd73c67c33997.tar.bz2 patchage-dd72175482f433f90e2eb90ae31cd73c67c33997.zip |
Avoid use of boost::optional::has_value
This fails to compile on CI, only with sanitizers for some reason.
Diffstat (limited to 'src/event_to_string.cpp')
-rw-r--r-- | src/event_to_string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event_to_string.cpp b/src/event_to_string.cpp index 788f42e..606c512 100644 --- a/src/event_to_string.cpp +++ b/src/event_to_string.cpp @@ -119,7 +119,7 @@ struct EventPrinter event.id, event.info.label); - if (event.info.order.has_value()) { + if (event.info.order) { result += fmt::format(" order: {}", *event.info.order); } |