Skip to content

Commit

Permalink
Consistent class/struct for std::hash<Credit>
Browse files Browse the repository at this point in the history
  • Loading branch information
azrogers committed Nov 8, 2024
1 parent 2a48249 commit 35a9d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CesiumUtility/include/CesiumUtility/CreditSystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ struct CESIUMUTILITY_API Credit {
Credit(size_t id_) noexcept { id = id_; }

friend class CreditSystem;
friend class std::hash<CesiumUtility::Credit>;
friend struct std::hash<CesiumUtility::Credit>;
};

/**
Expand Down

0 comments on commit 35a9d86

Please sign in to comment.