Skip to content

Commit

Permalink
Clean up forward declaration of deque unpack
Browse files Browse the repository at this point in the history
  • Loading branch information
sgerbino committed Dec 13, 2018
1 parent 17f3b0f commit 06e7e9f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion libraries/fc/include/fc/container/deque_fwd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ namespace fc {
template<typename Stream, typename T>
void pack( Stream& s, const std::deque<T>& value );
template<typename Stream, typename T>
void unpack( Stream& s, std::deque<T>& value );
void unpack( Stream& s, std::deque<T>& value, uint32_t depth = 0 );
}
} // namespace fc
3 changes: 0 additions & 3 deletions libraries/fc/include/fc/io/raw_fwd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ namespace fc {
template<typename Stream, typename... T> void pack( Stream& s, const static_variant<T...>& sv );
template<typename Stream, typename... T> void unpack( Stream& s, static_variant<T...>& sv, uint32_t depth = 0 );

template<typename Stream, typename T> inline void pack( Stream& s, const std::deque<T>& value );
template<typename Stream, typename T> inline void unpack( Stream& s, std::deque<T>& value, uint32_t depth = 0 );

template<typename Stream, typename K, typename V> inline void pack( Stream& s, const std::unordered_map<K,V>& value );
template<typename Stream, typename K, typename V> inline void unpack( Stream& s, std::unordered_map<K,V>& value, uint32_t depth = 0 );

Expand Down

0 comments on commit 06e7e9f

Please sign in to comment.