diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-12-12 22:14:32 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-12-12 22:14:32 +0000 |
commit | f2150b6857f942dbb498bac2bcb39da34ee01c27 (patch) | |
tree | 8458c4f2ea7007ac2ec49a695fe32e36bce57fde /unittests/Support | |
parent | df2f74fa411e54bc1e5f16eb86e5cb1bde973746 (diff) |
Unbreak the build. Fallout from r170019.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170033 91177308-0d34-0410-b5e6-96231b3b80d8
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 c24114a695..5c9db01a06 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; |