vectorgrp / vector-vscode-vcast

A VectorCAST test adapter for VS Code
Other
8 stars 2 forks source link

Ensure that coded mock's usages has the correct class name #139

Closed aytey closed 5 months ago

aytey commented 5 months ago

Fix the following example

namespace Moo {
namespace Quack {
namespace Oink {
class Honk {
public:
  void foo(void) {}
  void foo(int) {}
  void foo(long) {}
};
} // namespace Oink
} // namespace Quack
} // namespace Moo

where the incorrect function pointer type was constructed.

No tests as it needs the API access.