aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2020-01-15 14:50:28 +0900
committerMITSUNARI Shigeo <[email protected]>2020-01-15 14:50:28 +0900
commit6a4459a83a085af94c75bacf91718fbe57857359 (patch)
tree67a081394d2a37266e6da2e0152c619a0c1be614
parent8f696e93d11b4ac87a38ce7dca71b71e6f7c0d16 (diff)
parent47922ed96c9334f2f48291f2fe9c282a80c9046f (diff)
downloadxbyak-6a4459a83a085af94c75bacf91718fbe57857359.tar.gz
xbyak-6a4459a83a085af94c75bacf91718fbe57857359.zip
Merge branch 'tyfkda-feature/fix-segfault-in-calc'
-rw-r--r--sample/calc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sample/calc.cpp b/sample/calc.cpp
index 3f4a0f9..29ad9c3 100644
--- a/sample/calc.cpp
+++ b/sample/calc.cpp
@@ -155,9 +155,9 @@ struct Grammar : public boost::spirit::classic::grammar<Grammar> {
void put(const std::vector<double>& x)
{
- printf("%f", x[0]);
- for (size_t i = 1, n = x.size(); i < n; i++) {
- printf(", %f", x[i]);
+ for (size_t i = 0, n = x.size(); i < n; i++) {
+ if (i > 0) printf(", ");
+ printf("%f", x[i]);
}
}