index
:
CMake.git
master
release
CMake is a cross-platform, open-source build system generator.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Help
/
guide
/
tutorial
/
Step9
/
MathFunctions
/
MathExtensions
/
OpAdd
/
OpAdd.cxx
blob: ea114965c02c757b25b91ac92b4ae5c9f75f1e14 (
plain
)
1
2
3
4
5
6
namespace
mathfunctions
{
double
OpAdd
(
double
a
,
double
b
)
{
return
a
+
b
;
}
}