When the last line of the source file is #endif create implementation can place the definition in the wrong location.
For example:
---Header file---
class test
{
public:
#ifdef _DEBUG
void DebugFunc();
#endif
void NormalFunc();
};
-- end of the source file--
#ifdef _DEBUG
void test::DebugFunc()
{
}
#endif
Using Create Implementation on NormalFunc will place the definition for NormalFunc before the #endif even though this clearly should not be restricted to debug builds.