diff options
Diffstat (limited to 'lib/Support/IsNAN.cpp')
-rw-r--r-- | lib/Support/IsNAN.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/IsNAN.cpp b/lib/Support/IsNAN.cpp index 3300b7b47f..2ed2b284c7 100644 --- a/lib/Support/IsNAN.cpp +++ b/lib/Support/IsNAN.cpp @@ -31,4 +31,4 @@ namespace llvm { int IsNAN (float f) { return isnan (f); } int IsNAN (double d) { return isnan (d); } -}; // end namespace llvm; +} // end namespace llvm; |