我的库中有两个版本的错误结构,所以我想使用内联命名空间进行版本控制。
#pragma once
#include <string>
namespace core {
inline namespace v2 {
struct Error { // <-- new version
int code;
std::string description;
};
}
namespace v1 {
struct Error { // <-- old version
int code;
};
}
}
这是说明我在 Visual Studio 2017 中收到的编译错误的示例。clang 和 gcc 都可以正常工作。
// foo.h
#pragma once
#include "error.h"
namespace core {
class Foo
{
public:
Foo() = default;
~Foo() = default;
void someMethod(Error err);
};
}
// foo.cpp
#include "foo.h"
#include <iostream>
void core::Foo::someMethod(Error err) { // error C2065: 'Error': undeclared identifier
std::cout << err.code << std::endl;
}
看起来像 MSVS 中的一个错误,或者我可能遗漏了一些东西。此代码在 MSVS 上运行良好,没有任何问题:
void core::Foo::someMethod() { // <-- Error is not passed here
Error err;
err.code = 42;
std::cout << err.code << std::endl;
}
知道为什么我会收到此错误吗?