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: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# FindPython's Development.Module component was added in 3.18.
# Require 3.18.2+ because pybind11 recommends it.
cmake_minimum_required(VERSION 3.18.2)
# This policy CMP0177 can be removed when we upgrade to CMake >= 3.31.
cmake_policy(SET CMP0177 NEW)

#------------------------------------------------------------------------------
# Project Metadata
Expand Down
2 changes: 1 addition & 1 deletion src/opentimelineio/serializableObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class OTIO_API_TYPE SerializableObject
template <typename T>
bool read(std::string const& key, Retainer<T>* dest)
{
SerializableObject* so;
SerializableObject* so = nullptr;
if (!read(key, &so))
{
return false;
Expand Down
Loading