From 4c3b6c210641a2cee3ea312d44e39ddc7701d668 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Tue, 17 Jun 2014 09:35:37 -0400 Subject: [PATCH] fix prototype mismatch --- include/fc/time.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fc/time.hpp b/include/fc/time.hpp index 4b64281..ca851ec 100644 --- a/include/fc/time.hpp +++ b/include/fc/time.hpp @@ -121,7 +121,7 @@ namespace fc { const time_point_sec& relative_to_time = fc::time_point::now(), const std::string& ago = " ago"); string get_approximate_relative_time_string(const time_point& event_time, - const time_point_sec& relative_to_time = fc::time_point::now(), + const time_point& relative_to_time = fc::time_point::now(), const std::string& ago = " ago"); }