Skip to content

Commit

Permalink
Fix mac having a different representation for unsigned long (AliceO2G…
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf authored Jan 13, 2025
1 parent c834c68 commit 92166c6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Framework/Core/include/Framework/ConfigParamRegistry.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ concept SimpleConfigValueType = std::same_as<T, int> ||
std::same_as<T, int16_t> ||
std::same_as<T, uint8_t> ||
std::same_as<T, uint16_t> ||
std::same_as<T, uint32_t> ||
std::same_as<T, uint64_t> ||
std::same_as<T, unsigned int> ||
std::same_as<T, unsigned long> ||
std::same_as<T, unsigned long long> ||
std::same_as<T, long> ||
std::same_as<T, long long> ||
std::same_as<T, float> ||
Expand Down

0 comments on commit 92166c6

Please sign in to comment.