Bug #1640
Assist++ doesen't recongize static methods in class
Status: | Approved | Start date: | 02/10/2017 | |
---|---|---|---|---|
Priority: | Urgent | Due date: | ||
Assignee: | Zbigniew Rebacz | % Done: | 0% | |
Category: | Assist++ | Spent time: | - | |
Target version: | Release 2018.1 |
Description
Example:
// 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++"); // Jumping to PrintLogToConsole doesn't work...
Will test - this is the basic re-implementation of legacy code.
History
#1 Updated by Zbigniew Rebacz about 8 years ago
- Description updated (diff)
#2 Updated by Zbigniew Rebacz almost 8 years ago
- Priority changed from Normal to High
#3 Updated by Zbigniew Rebacz over 7 years ago
- Priority changed from High to Urgent
Should be fixed in 2017.2.
#4 Updated by Zbigniew Rebacz over 7 years ago
- Description updated (diff)
#5 Updated by Zbigniew Rebacz over 7 years ago
- Target version changed from Release 2017.2 to Release 2018.1
#6 Updated by Miroslav Fidler about 7 years ago
- Assignee changed from Miroslav Fidler to Zbigniew Rebacz
IDK, I have tested with exactly this code and it works....
#7 Updated by Zbigniew Rebacz about 7 years ago
I Tested it too and it works correctly. Closing...
#8 Updated by Zbigniew Rebacz about 7 years ago
- Status changed from New to Approved