From fc04358d6d2b2e269da72d782087abae65754b31 Mon Sep 17 00:00:00 2001 From: Will Rieger Date: Sun, 29 Sep 2024 09:50:27 -0400 Subject: [PATCH] Change Time::MIN to Time::MIN_VALUE to match DateTime Signed-off-by: Will Rieger --- cpp/csp/core/Time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/csp/core/Time.h b/cpp/csp/core/Time.h index f2e73d990..07a2247ac 100644 --- a/cpp/csp/core/Time.h +++ b/cpp/csp/core/Time.h @@ -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 );