Skip to content

Commit

Permalink
fix: made msvc happy now?
Browse files Browse the repository at this point in the history
  • Loading branch information
jeefo committed Apr 30, 2023
1 parent 18b1c53 commit 061cf9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/crlib
Submodule crlib updated 1 files
+7 −5 crlib/random.h
4 changes: 3 additions & 1 deletion src/storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,9 @@ template <typename U> BotStorage::SaveLoadData BotStorage::guessType () {
else if constexpr (cr::is_same <U, GraphVistable::VisStorage>::value) {
return { "Vistable", StorageOption::Vistable, StorageVersion::Vistable };
}
return { "Graph", StorageOption::Graph, StorageVersion::Graph };
else if constexpr (cr::is_same <U, Path>::value) {
return { "Graph", StorageOption::Graph, StorageVersion::Graph };
}
}

#else
Expand Down

0 comments on commit 061cf9d

Please sign in to comment.