diff options
author | Tony Theodore <tonyt@logyst.com> | 2018-08-13 13:47:15 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2018-08-15 02:57:09 (GMT) |
commit | 6473abe4e0cbf83bc875c2d288ceb1eeab9e0db7 (patch) | |
tree | 78931abe06c71d554028aaa445b8989b5c0ba7ea /src/muparserx-test.cpp | |
parent | 3b8cd1213ef22a3cded7cd98c8137d59259346a0 (diff) | |
download | mxe-6473abe4e0cbf83bc875c2d288ceb1eeab9e0db7.zip mxe-6473abe4e0cbf83bc875c2d288ceb1eeab9e0db7.tar.gz mxe-6473abe4e0cbf83bc875c2d288ceb1eeab9e0db7.tar.bz2 |
muparserx: fix gcc7 build
Diffstat (limited to 'src/muparserx-test.cpp')
-rw-r--r-- | src/muparserx-test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/muparserx-test.cpp b/src/muparserx-test.cpp index 10dcbdd..8ab0d2c 100644 --- a/src/muparserx-test.cpp +++ b/src/muparserx-test.cpp @@ -34,7 +34,7 @@ int main(int argc, char *argv[]) p.DefineVar("c", Variable(&fVal)); p.SetExpr("va[0]+a*strlen(b)-c"); - for (int i=0; i<<10; ++i) + for (int i=0; i<10; ++i) { // evaluate the expression and change the value of // the variable c in each turn |