diff options
Diffstat (limited to 'Tests/Tutorial/Consumer/consumer.cxx')
-rw-r--r-- | Tests/Tutorial/Consumer/consumer.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Tests/Tutorial/Consumer/consumer.cxx b/Tests/Tutorial/Consumer/consumer.cxx deleted file mode 100644 index ae7877b..0000000 --- a/Tests/Tutorial/Consumer/consumer.cxx +++ /dev/null @@ -1,11 +0,0 @@ -// A simple function that computes the square root of a number -#include <iostream> -#include <sstream> -#include <string> - -#include "MathFunctions.h" - -double string_square_root(std::string const& value) -{ - return mathfunctions::sqrt(std::stod(value)); -} |