Bug #1640

Updated by Zbigniew Rebacz over 6 years ago

Example:
<pre><code class="cpp">
// MyStaticClass.h
namespace A {
class MyStaticClass {
public:
static void PrintLogToConsole(const std::string& log);
}
}

// MyStaticClass.cpp
using namespace A;

MyStaticClass::PrintLogToConsole(const std::string& log) { ... }

// Another file
#include "MyStaticClass.h"

MyStaticClass::PrintLogToConsole("Ultimate++"); MyStaticClass:PrintLogToConsole(&quot;Ultimate++&quot;); // Jumping to PrintLogToConsole doesn't work...

</code></pre>

Will test - this is the basic re-implementation of legacy code.

Back