Skip to content

Commit

Permalink
[image] storageDataType: use lowerCamelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiencastan committed Sep 14, 2020
1 parent c2f4e66 commit 538f8be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/aliceVision/image/io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ std::string EStorageDataType_enumToString(const EStorageDataType dataType)
{
switch (dataType)
{
case EStorageDataType::Float: return "Float";
case EStorageDataType::Half: return "Half";
case EStorageDataType::HalfFinite: return "HalfFinite";
case EStorageDataType::Auto: return "Auto";
case EStorageDataType::Float: return "float";
case EStorageDataType::Half: return "half";
case EStorageDataType::HalfFinite: return "halfFinite";
case EStorageDataType::Auto: return "auto";
}
throw std::out_of_range("Invalid EStorageDataType enum");
}
Expand Down

0 comments on commit 538f8be

Please sign in to comment.