Skip to content

Commit

Permalink
Merge pull request EOSIO#164 from smlu/develop
Browse files Browse the repository at this point in the history
Fix missing const declaration
  • Loading branch information
larryk85 committed Oct 16, 2018
2 parents 3c604fb + 31db89e commit 664994c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/eosiolib/symbol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,9 @@ namespace eosio {

constexpr extended_symbol( symbol sym, name con ) : symbol(sym), contract(con) {}

constexpr symbol get_symbol() { return symbol; }
constexpr symbol get_symbol() const { return symbol; }

constexpr name get_contract() { return contract; }
constexpr name get_contract() const { return contract; }

/**
* %Print the extended symbol
Expand Down

0 comments on commit 664994c

Please sign in to comment.