|
From: Dan P. <ba...@al...> - 2005-11-17 07:32:11
|
On Nov 16, 2005, at 7:52 PM, Sam Steele wrote:
> logxymover.cpp: Replace "Tiki::Math::..." with a "using namespace
> Tiki::Math" so it compiles against dc/fmath.h
Might be a better way to do this to 'using' them into the proper
namespace. Other places inside Tiki use these and could benefit from
the speed boost. I think there are non-macro functions you could do
this with. e.g.
namespace Tiki {
namespace Math {
using ::fsin;
}
}
and so on...
Or does "namespace Tiki::Math {" work? I honestly never tried it :D
|