Skip to content

Commit

Permalink
Merge pull request EOSIO#57 from EOSIO/fix/unused_decl
Browse files Browse the repository at this point in the history
Remove unused declarations.
  • Loading branch information
larryk85 authored Aug 30, 2018
2 parents 992e8e5 + 54ce368 commit 2c106a0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libraries/eosiolib/time.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ namespace eosio {
class time_point {
public:
explicit time_point( microseconds e = microseconds() ) :elapsed(e){}
operator std::string()const;
static time_point from_iso_string( const std::string& s );
const microseconds& time_since_epoch()const { return elapsed; }
uint32_t sec_since_epoch()const { return uint32_t(elapsed.count() / 1000000); }
bool operator > ( const time_point& t )const { return elapsed._count > t.elapsed._count; }
Expand Down

0 comments on commit 2c106a0

Please sign in to comment.