Skip to content

Commit

Permalink
fix some missing declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
skript023 committed Feb 19, 2024
1 parent bdc053d commit 4d2680e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ int main()

LOG(INFO) << fmt::format("\n\tGit Info\n\tBranch:\t{}\n\tHash:\t{}\n\tDate:\t{}", server_version::GIT_BRANCH, server_version::GIT_SHA1, server_version::GIT_DATE);

LOG(INFO) << "Admin middleware is " << ADMIN_MIDDLEWARE_STATUS;
LOG(INFO) << "Admin middleware is " << BASIC_MIDDLEWARE_STATUS;
LOG(INFO) << "Customer middleware is " << CUSTOMER_MIDDLEWARE_STATUS;

g_file_manager.init(UPLOAD_PATH);
Expand Down
2 changes: 1 addition & 1 deletion src/module/order/enums/order_status.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ namespace gaboot
static constexpr const char* SUCCESS = "SUCCESS";
static constexpr const char* CANCELLED = "CANCELLED";
static constexpr const char* EXPIRED = "EXPIRED";
}
};
}

0 comments on commit 4d2680e

Please sign in to comment.