Skip to content

Commit

Permalink
latest merge confirmed and fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
despicable me committed Mar 26, 2016
1 parent 29dbbef commit 1d74042
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#CC = g++
#CFLAGS = -O3 -Wall -pedantic -ffast-math -fomit-frame-pointer
CC = g++ -std=c++11 -O3 -Wall -pedantic
CFLAGS = -O3 -Wall -pedantic -ffast-math -fomit-frame-pointer

CC = clang++
CFLAGS = `llvm-config --ldflags` -O3 -Wall -pedantic -std=c++11
#CC = clang++
#CFLAGS = `llvm-config --ldflags` -O3 -Wall -pedantic -std=c++11

# debug version
#CFLAGS = -Wall -ggdb
Expand Down
2 changes: 0 additions & 2 deletions bin/README

This file was deleted.

2 changes: 0 additions & 2 deletions obj/README

This file was deleted.

2 changes: 1 addition & 1 deletion parser/mpDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
#endif

/** \brief A macro containing the version of muParserX. */
#define MUP_PARSER_VERSION _T("4.0.5 (2015-11-21)")
#define MUP_PARSER_VERSION _T("4.0.6 (2016-03-26; Dev)")

/** \brief A macro for setting the parser namespace. */
#define MUP_NAMESPACE_START namespace mup {
Expand Down
2 changes: 1 addition & 1 deletion parser/mpFuncNonCmplx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ MUP_NAMESPACE_START
MUP_UNARY_FUNC(FunLn, "ln", std::log, "Natural logarithm")
// square root
MUP_UNARY_FUNC(FunSqrt, "sqrt", std::sqrt, "sqrt(x) - square root of x")
MUP_UNARY_FUNC(FunCbrt, "cbrt", std::cqrt, "cbrt(x) - cubic root of x")
MUP_UNARY_FUNC(FunCbrt, "cbrt", std::cbrt, "cbrt(x) - cubic root of x")
MUP_UNARY_FUNC(FunExp, "exp", std::exp, "exp(x) - e to the power of x")
MUP_UNARY_FUNC(FunAbs, "abs", std::fabs, "abs(x) - absolute value of x")
#undef MUP_UNARY_FUNC
Expand Down

0 comments on commit 1d74042

Please sign in to comment.