Skip to content

Commit

Permalink
Change Time::MIN to Time::MIN_VALUE to match DateTime
Browse files Browse the repository at this point in the history
Signed-off-by: Will Rieger <[email protected]>
  • Loading branch information
wrieg123 committed Sep 29, 2024
1 parent 1ce6f25 commit fc04358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/csp/core/Time.h
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ class Time
static Time fromString( const std::string & );

static Time NONE() { return Time( -1 ); }
static Time MIN() { return Time( 0, 0, 0 ); }
static Time MIN_VALUE() { return Time( 0, 0, 0 ); }

private:
Time( int64_t raw );
Expand Down

0 comments on commit fc04358

Please sign in to comment.