Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/conform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ int conform_timeline(
// relink to the found path
clip->set_media_reference(new otio::ExternalReference(
"file://" + new_path,
otio::nullopt // the available range is unknown without opening the file
std::nullopt // the available range is unknown without opening the file
));
count += 1;
}
Expand Down
3 changes: 1 addition & 2 deletions examples/io_perf_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

#include "opentimelineio/clip.h"
#include "opentimelineio/typeRegistry.h"
#include "opentimelineio/any.h"
#include "opentimelineio/serialization.h"
#include "opentimelineio/deserialization.h"
#include "opentimelineio/timeline.h"
Expand Down Expand Up @@ -133,7 +132,7 @@ main(
print_elapsed_time("downgrade clip", begin, end);
}

otio::any tl;
std::any tl;
std::string fname = std::string(argv[1]);

// read file
Expand Down