Skip to content

Commit 6e13de4

Browse files
Fix DEFAULT_EPSILON_s visiblity (#2005)
* Fix DEFAULT_EPSILON_s visiblity Signed-off-by: Darby Johnston <darbyjohnston@yahoo.com> --------- Signed-off-by: Darby Johnston <darbyjohnston@yahoo.com>
1 parent 3a635fa commit 6e13de4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/opentime/timeRange.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace opentime { namespace OPENTIME_VERSION_NS {
1616
/// a resolution of half a frame at 192kHz. The value can be changed in the future if
1717
/// necessary, due to higher sampling rates or some other kind of numeric tolerance
1818
/// detected in the library.
19-
OPENTIME_API constexpr double DEFAULT_EPSILON_s = 1.0 / (2 * 192000.0);
19+
inline constexpr double DEFAULT_EPSILON_s = 1.0 / (2 * 192000.0);
2020

2121
/// @brief This class represents a time range defined by a start time and duration.
2222
///

0 commit comments

Comments
 (0)