Skip to content

Commit e562a8c

Browse files
committed
small namespace cleanup
1 parent 9afa607 commit e562a8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

navmerge.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ bool g_inavdedup{false};
7272
7373
*/
7474

75-
auto xSecondsFromNow(double seconds)
75+
static auto xSecondsFromNow(double seconds)
7676
{
7777
auto now = chrono::steady_clock::now();
7878
now += std::chrono::milliseconds((unsigned int)(seconds*1000));
7979
return now;
8080
}
8181

82-
int msecLeft(const std::chrono::steady_clock::time_point& deadline)
82+
static int msecLeft(const std::chrono::steady_clock::time_point& deadline)
8383
{
8484
auto now = chrono::steady_clock::now();
8585
return std::chrono::duration_cast<std::chrono::milliseconds>(deadline - now).count();

0 commit comments

Comments
 (0)