forked from OSchip/llvm-project
Unbreak the build. Fallout from r170019.
llvm-svn: 170033
This commit is contained in:
parent
323bcb9eb9
commit
b088ff6617
|
@ -552,7 +552,7 @@ namespace yaml {
|
||||||
}
|
}
|
||||||
|
|
||||||
static StringRef input(StringRef scalar, void *, MyNumber &value) {
|
static StringRef input(StringRef scalar, void *, MyNumber &value) {
|
||||||
int64_t n;
|
long long n;
|
||||||
if ( getAsSignedInteger(scalar, 0, n) )
|
if ( getAsSignedInteger(scalar, 0, n) )
|
||||||
return "invalid number";
|
return "invalid number";
|
||||||
value = n;
|
value = n;
|
||||||
|
|
Loading…
Reference in New Issue