mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 18:40:28 +00:00
15 lines
206 B
C++
15 lines
206 B
C++
// -*- C++ -*-
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
namespace ACE_OS {
|
|
|
|
ACE_INLINE double
|
|
log2 (double x)
|
|
{
|
|
return ace_log2_helper (x);
|
|
}
|
|
|
|
} // ACE_OS namespace
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|