Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bertrand Zhang committed Jul 25, 2024
1 parent 2ebe52f commit 9e621cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/c++/str/source/Convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ unsigned long long str::strtoull(const char *str, char **endptr, int base)

template<> CODA_OSS_API int str::getPrecision(const float&)
{
return std::numeric_limits<float>::max_digits10;
return std::numeric_limits<float>::digits10;
}
template<> CODA_OSS_API int str::getPrecision(const double& )
{
Expand Down
2 changes: 1 addition & 1 deletion modules/c++/types/include/types/RowCol.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ template<typename T> class RowCol
T col{};

// Try to protect us from the unfortunate and probably
// unintendet case where row gets set and col doesnt, especially
// unintendet case where row gets set and col doesn't, especially
// when doing scalar operations that might otherwise create
// ambiguities
RowCol() {} // = default; // error w/ICC and "const" member data
Expand Down

0 comments on commit 9e621cf

Please sign in to comment.