Skip to content

Commit

Permalink
Merge pull request #809 from koinos/bump-deps-version
Browse files Browse the repository at this point in the history
Bump dependencies and version to v1.0.3
  • Loading branch information
mvandeberg authored Feb 9, 2023
2 parents e19efba + be96f44 commit 01417fb
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 33 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ HunterGate(
LOCAL
)

project(koinos_chain VERSION 1.0.2 LANGUAGES CXX C)
project(koinos_chain VERSION 1.0.3 LANGUAGES CXX C)
add_compile_definitions(KOINOS_MAJOR_VERSION=${PROJECT_VERSION_MAJOR})
add_compile_definitions(KOINOS_MINOR_VERSION=${PROJECT_VERSION_MINOR})
add_compile_definitions(KOINOS_PATCH_VERSION=${PROJECT_VERSION_PATCH})
Expand Down
2 changes: 0 additions & 2 deletions libraries/chain/include/koinos/chain/state.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

namespace koinos::chain {

bool operator<( const object_space& lhs, const object_space& rhs );

namespace state {

namespace zone {
Expand Down
23 changes: 0 additions & 23 deletions libraries/chain/state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,6 @@

namespace koinos::chain {

bool operator<( const object_space& lhs, const object_space& rhs )
{
if ( lhs.system() < rhs.system() )
{
return true;
}
else if ( lhs.system() > rhs.system() )
{
return false;
}

if ( lhs.zone() < rhs.zone() )
{
return true;
}
else if ( lhs.system() > rhs.system() )
{
return false;
}

return lhs.id() < rhs.id();
}

namespace state {

namespace space {
Expand Down
2 changes: 1 addition & 1 deletion libraries/log
2 changes: 1 addition & 1 deletion libraries/mq
2 changes: 1 addition & 1 deletion libraries/proto
Submodule proto updated 136 files

0 comments on commit 01417fb

Please sign in to comment.