Skip to content
This repository has been archived by the owner on Aug 15, 2022. It is now read-only.

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadelessFox committed Sep 15, 2020
1 parent 72a00ac commit f5312df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/decima/shared.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace Decima {

#define DECIMA_VERSION_MAJOR 0
#define DECIMA_VERSION_MINOR 1
#define DECIMA_VERSION_MICRO 5
#define DECIMA_VERSION_MICRO 6

// clang-format off
#define DECIMA_VERSION \
Expand Down
2 changes: 1 addition & 1 deletion src/decima/archive/archive_array.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void Decima::ArchiveArray::load_archive(const std::string& path) {
archive.open();

for (const auto& entry : archive.content_table) {
hash_to_archive_index.emplace(entry.hash, archives.size() - 1);
hash_to_archive_index.emplace(entry.hash, static_cast<int>(archives.size() - 1));
}
}

Expand Down

0 comments on commit f5312df

Please sign in to comment.