Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
anagainaru committed Aug 3, 2024
1 parent dd5765c commit 839e53c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/adios2/toolkit/derived/Function.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ DerivedData PowFunc(std::vector<DerivedData> inputData, DataType type)
PERFSTUBS_SCOPED_TIMER("derived::Function::PowFunc");
if (inputData.size() != 2)
{
helper::Throw<std::invalid_argument>("Derived", "Function", "SqrtFunc",
"Invalid number of arguments passed to SqrtFunc");
helper::Throw<std::invalid_argument>("Derived", "Function", "PowFunc",
"Invalid number of arguments passed to PowFunc");
}
size_t dataSize = std::accumulate(std::begin(inputData[0].Count), std::end(inputData[0].Count),
1, std::multiplies<size_t>());
Expand Down

0 comments on commit 839e53c

Please sign in to comment.