Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigma711 committed Jun 29, 2022
1 parent 9d4791f commit b1a60be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#define START_THE_LIBRARY_SYSTEM() \
do { \
core::Manager::GetManager()->Execute(); \
} while (false);
} while (false)

namespace core {

Expand All @@ -36,6 +36,8 @@ class Manager : NonCopyableMovable {
void Execute();

private:
Manager() = default;

typedef std::map<unsigned long long, std::shared_ptr<Item>> Indexer;
typedef std::array<Indexer, 3> Indexers;
typedef std::unordered_map<std::string, std::string> UserPasswords;
Expand Down

0 comments on commit b1a60be

Please sign in to comment.