summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-02-09 11:15:20 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-02-09 11:15:20 +0100
commit034dde403fc08d48d270b7581d13ed9e768cfc63 (patch)
tree8f9a382c806c55f9def5bc569d202b68eead1c34
parent7c7121e92b3ebd2763b4b03227eeec09461d8ea9 (diff)
fix test (fixes issue 167)
-rw-r--r--tests/cpp/include/variables/011-012-value-casting-operators.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpp/include/variables/011-012-value-casting-operators.h b/tests/cpp/include/variables/011-012-value-casting-operators.h
index 182054b..2d791b2 100644
--- a/tests/cpp/include/variables/011-012-value-casting-operators.h
+++ b/tests/cpp/include/variables/011-012-value-casting-operators.h
@@ -20,7 +20,7 @@ namespace TestVariables {
{
Php::Value value = params[0];
- long value1 = value;
+ int64_t value1 = value;
std::string value2 = value;
bool value4 = value;