diff options
author | Betsy McPhail <betsy.mcphail@kitware.com> | 2020-01-08 17:55:36 (GMT) |
---|---|---|
committer | Betsy McPhail <betsy.mcphail@kitware.com> | 2020-01-10 16:38:00 (GMT) |
commit | cf2afb10653eb0705760e07f1113aa710ae7e6c3 (patch) | |
tree | d5dd0307ca29f351d6dadfff9aa16a00d07a5fe8 /Help/guide/tutorial/Consumer/consumer.cxx | |
parent | 77b515f3eb0494721824e7ee47e32621b947c67f (diff) | |
download | CMake-cf2afb10653eb0705760e07f1113aa710ae7e6c3.zip CMake-cf2afb10653eb0705760e07f1113aa710ae7e6c3.tar.gz CMake-cf2afb10653eb0705760e07f1113aa710ae7e6c3.tar.bz2 |
Tutorial: Remove 'Consumer' example
This example was incomplete and did not follow the format of the tutorial.
Diffstat (limited to 'Help/guide/tutorial/Consumer/consumer.cxx')
-rw-r--r-- | Help/guide/tutorial/Consumer/consumer.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Help/guide/tutorial/Consumer/consumer.cxx b/Help/guide/tutorial/Consumer/consumer.cxx deleted file mode 100644 index ae7877b..0000000 --- a/Help/guide/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)); -} |