
BUG=50273 TEST=everything still builds, build is 10% faster on windows, same speed on mac/linux TBR: erg git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53716 0039d316-1c4b-4281-b951-d872f2087c98
31 lines
596 B
C++
31 lines
596 B
C++
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef BASE_FLOAT_UTIL_H_
|
|
#define BASE_FLOAT_UTIL_H_
|
|
#pragma once
|
|
|
|
#include "build/build_config.h"
|
|
|
|
#include <float.h>
|
|
#include <math.h>
|
|
|
|
#if defined(OS_SOLARIS)
|
|
#include <ieeefp.h>
|
|
#endif
|
|
|
|
namespace base {
|
|
|
|
inline bool IsFinite(const double& number) {
|
|
#if defined(OS_POSIX)
|
|
return finite(number) != 0;
|
|
#elif defined(OS_WIN)
|
|
return _finite(number) != 0;
|
|
#endif
|
|
}
|
|
|
|
} // namespace base
|
|
|
|
#endif // BASE_FLOAT_UTIL_H_
|