diff options
Diffstat (limited to 'unittests/Support')
-rw-r--r-- | unittests/Support/YAMLIOTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Support/YAMLIOTest.cpp b/unittests/Support/YAMLIOTest.cpp index c24114a..5c9db01 100644 --- a/unittests/Support/YAMLIOTest.cpp +++ b/unittests/Support/YAMLIOTest.cpp @@ -552,7 +552,7 @@ namespace yaml { } static StringRef input(StringRef scalar, void *, MyNumber &value) { - int64_t n; + long long n; if ( getAsSignedInteger(scalar, 0, n) ) return "invalid number"; value = n; |