Skip to content

Commit b2f9eae

Browse files
author
Ingo Berg
committed
Fix for Issue 68
- Fix for Issue 68 - Version number incresed to 4.0.7 - Copyright notices in file comments updated
1 parent 1d74042 commit b2f9eae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+160
-393
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.obj
2+
*.ilk
3+
*.pdb
4+
*.lastbuildstate
5+
*.opensdf
6+
*.suo
7+
*.sdf
8+
*.log
9+
*.tlog
10+
*.ilk

License.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# |__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \ #
88
# \/ \/ \/ \/ \_/ #
99
# #
10-
# Copyright (C) 2013 Ingo Berg #
10+
# Copyright (C) 2016 Ingo Berg #
1111
# #
1212
# Web: http://muparserx.beltoforion.de #
1313
# SVN: http://muparserx.googlecode.com/svn/trunk #

Readme.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
# |__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \ #
88
# \/ \/ \/ \/ \_/ #
99
# #
10-
# Copyright (C) 2015 Ingo Berg #
10+
# Copyright (C) 2016 Ingo Berg #
1111
# #
1212
# Web: http://muparserx.beltoforion.de #
1313
# SVN: http://muparserx.googlecode.com/svn/trunk #
1414
# e-mail: [email protected] #
1515
# #
1616
# The code contains contributions made by the following people: #
17-
# Martin Rotter (https://github.com/martinrotter) #
18-
# Josh Blum (https://github.com/guruofquality) #
17+
# Martin Rotter (https://github.com/martinrotter) #
18+
# Josh Blum (https://github.com/guruofquality) #
1919
# #
2020
# This software is distributed under the terms of the #
2121
# BSD - Clause 2 "Simplified" or "FreeBSD" Licence (BSD-2-Clause) #

parser/mpCompat.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2014 Ingo Berg
8+
Copyright (C) 2016 Ingo Berg
99
All rights reserved.
1010
11-
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
13-
All rights reserved.
14-
1511
Redistribution and use in source and binary forms, with or without
1612
modification, are permitted provided that the following conditions are met:
1713

parser/mpDefines.h

+2-6
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2015 Ingo Berg
11+
Copyright (C) 2016, Ingo Berg
1212
All rights reserved.
1313
14-
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
16-
All rights reserved.
17-
1814
Redistribution and use in source and binary forms, with or without
1915
modification, are permitted provided that the following conditions are met:
2016
@@ -62,7 +58,7 @@
6258
#endif
6359

6460
/** \brief A macro containing the version of muParserX. */
65-
#define MUP_PARSER_VERSION _T("4.0.6 (2016-03-26; Dev)")
61+
#define MUP_PARSER_VERSION _T("4.0.7 (2016-03-31; Dev)")
6662

6763
/** \brief A macro for setting the parser namespace. */
6864
#define MUP_NAMESPACE_START namespace mup {

parser/mpError.cpp

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
/*
2-
__________ ____ ___
3-
_____ __ _\______ \_____ _______ ______ __________\ \/ /
2+
__________ ____ ___
3+
_____ __ _\______ \_____ _______ ______ __________\ \/ /
44
/ \| | \ ___/\__ \\_ __ \/ ___// __ \_ __ \ /
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
7-
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
9-
All rights reserved.
10-
11-
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
7+
\/ \/ \/ \/ \_/
8+
Copyright (C) 2016 Ingo Berg
139
All rights reserved.
1410
1511
Redistribution and use in source and binary forms, with or without

parser/mpError.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
8+
Copyright (C) 2016, Ingo Berg
99
All rights reserved.
1010
11-
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
13-
All rights reserved.
14-
1511
Redistribution and use in source and binary forms, with or without
1612
modification, are permitted provided that the following conditions are met:
1713

parser/mpFuncCmplx.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016 Ingo Berg
1212
All rights reserved.
1313
1414
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
15+
Copyright (c) 2016, Ingo Berg
1616
All rights reserved.
1717
1818
Redistribution and use in source and binary forms, with or without

parser/mpFuncCmplx.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016 Ingo Berg
1212
All rights reserved.
1313
1414
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
15+
Copyright (c) 2016, Ingo Berg
1616
All rights reserved.
1717
1818
Redistribution and use in source and binary forms, with or without

parser/mpFuncCommon.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
8+
Copyright (C) 2016 Ingo Berg
99
All rights reserved.
1010
1111
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
12+
Copyright (c) 2016, Ingo Berg
1313
All rights reserved.
1414
1515
Redistribution and use in source and binary forms, with or without

parser/mpFuncCommon.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
8+
Copyright (C) 2016 Ingo Berg
99
All rights reserved.
1010
1111
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
12+
Copyright (c) 2016, Ingo Berg
1313
All rights reserved.
1414
1515
Redistribution and use in source and binary forms, with or without

parser/mpFuncMatrix.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2015 Ingo Berg
12-
All rights reserved.
1311
1412
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
13+
Copyright (c) 2016, Ingo Berg
1614
All rights reserved.
1715
1816
Redistribution and use in source and binary forms, with or without

parser/mpFuncMatrix.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016, Ingo Berg
1212
All rights reserved.
1313
14-
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
16-
All rights reserved.
17-
1814
Redistribution and use in source and binary forms, with or without
1915
modification, are permitted provided that the following conditions are met:
2016

parser/mpFuncNonCmplx.cpp

+1-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016, Ingo Berg
1212
All rights reserved.
1313
14-
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
16-
All rights reserved.
17-
1814
Redistribution and use in source and binary forms, with or without
1915
modification, are permitted provided that the following conditions are met:
2016

parser/mpFuncNonCmplx.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016, Ingo Berg
1212
All rights reserved.
1313
14-
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
16-
All rights reserved.
17-
1814
Redistribution and use in source and binary forms, with or without
1915
modification, are permitted provided that the following conditions are met:
2016

parser/mpFuncStr.cpp

+1-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
8+
Copyright (C) 2016, Ingo Berg
99
All rights reserved.
1010
11-
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
13-
All rights reserved.
14-
1511
Redistribution and use in source and binary forms, with or without
1612
modification, are permitted provided that the following conditions are met:
1713

parser/mpFuncStr.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
8+
Copyright (C) 2016, Ingo Berg
99
All rights reserved.
1010
11-
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
13-
All rights reserved.
14-
1511
Redistribution and use in source and binary forms, with or without
1612
modification, are permitted provided that the following conditions are met:
1713

parser/mpFwdDecl.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
8+
Copyright (C) 2016, Ingo Berg
99
All rights reserved.
1010
11-
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
13-
All rights reserved.
14-
1511
Redistribution and use in source and binary forms, with or without
1612
modification, are permitted provided that the following conditions are met:
1713

parser/mpICallback.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016 Ingo Berg
1212
All rights reserved.
1313
1414
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
15+
Copyright (c) 2016, Ingo Berg
1616
All rights reserved.
1717
1818
Redistribution and use in source and binary forms, with or without

parser/mpICallback.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016 Ingo Berg
1212
All rights reserved.
1313
1414
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
15+
Copyright (c) 2016, Ingo Berg
1616
All rights reserved.
1717
1818
Redistribution and use in source and binary forms, with or without

parser/mpIOprt.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
8+
Copyright (C) 2016 Ingo Berg
99
All rights reserved.
1010
1111
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
12+
Copyright (c) 2016, Ingo Berg
1313
All rights reserved.
1414
1515
Redistribution and use in source and binary forms, with or without

parser/mpIOprt.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016 Ingo Berg
1212
All rights reserved.
1313
1414
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
15+
Copyright (c) 2016, Ingo Berg
1616
All rights reserved.
1717
1818
Redistribution and use in source and binary forms, with or without

parser/mpIPackage.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
8+
Copyright (C) 2016 Ingo Berg
99
All rights reserved.
1010
1111
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
12+
Copyright (c) 2016, Ingo Berg
1313
All rights reserved.
1414
1515
Redistribution and use in source and binary forms, with or without

parser/mpIPackage.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016 Ingo Berg
1212
All rights reserved.
1313
1414
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
15+
Copyright (c) 2016, Ingo Berg
1616
All rights reserved.
1717
1818
Redistribution and use in source and binary forms, with or without

parser/mpIPrecedence.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
99
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
1010
\/ \/ \/ \/ \_/
11-
Copyright (C) 2013 Ingo Berg
11+
Copyright (C) 2016 Ingo Berg
1212
All rights reserved.
1313
1414
muParserX - A C++ math parser library with array and string support
15-
Copyright (c) 2013, Ingo Berg
15+
Copyright (c) 2016, Ingo Berg
1616
All rights reserved.
1717
1818
Redistribution and use in source and binary forms, with or without

parser/mpIToken.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
66
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
77
\/ \/ \/ \/ \_/
8-
Copyright (C) 2013 Ingo Berg
8+
Copyright (C) 2016 Ingo Berg
99
All rights reserved.
1010
1111
muParserX - A C++ math parser library with array and string support
12-
Copyright (c) 2013, Ingo Berg
12+
Copyright (c) 2016, Ingo Berg
1313
All rights reserved.
1414
1515
Redistribution and use in source and binary forms, with or without

parser/mpIToken.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
| Y Y \ | / | / __ \| | \/\___ \\ ___/| | \/ \
77
|__|_| /____/|____| (____ /__| /____ >\___ >__| /___/\ \
88
\/ \/ \/ \/ \_/
9-
Copyright (C) 2013 Ingo Berg
9+
Copyright (C) 2016 Ingo Berg
1010
All rights reserved.
1111
1212
muParserX - A C++ math parser library with array and string support
13-
Copyright (c) 2013, Ingo Berg
13+
Copyright (c) 2016, Ingo Berg
1414
All rights reserved.
1515
1616
Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)