我将http://www.drdobbs.com/embedded-systems/225700666移植到微处理器Keil MDK
。ARM
该框架可以gcc
在我的桌面上编译并正常工作,但使用Keil
编译器会给我一个错误:
logging/singleton.h(65): error: #70: incomplete type is not allowed
以下代码显示了singleton
我得到此错误的地方的实现。这个错误来自哪里?
namespace logging {
namespace detail {
template <typename T>
class singleton
{
private:
struct obj
{
obj() { singleton<T>::instance(); }
inline void empty() const { }
};
static obj __obj;
singleton();
public:
typedef T obj_type;
static obj_type & instance()
{
static obj_type obj; // <-- Here I get this error
__obj.empty();
return obj;
}
};
template <typename T>
typename singleton<T>::obj
singleton<T>::__obj;
} /* detail */
} /* logging */
编辑:在singleton
此处实例化
template <typename log_t, typename T>
struct Obj {
static return_type& obj () {
typedef singleton<return_type> log_output;
return log_output::instance();
}
};
return_type
typedef在哪里:
typedef R return_type;
这是父模板的参数:
template<typename Level = ::logging::Void, typename R = loggingReturnType>
class Logger {
...
};
loggingReturnType
在类定义之上向前声明:
struct loggingReturnType;
编辑 2:这loggingReturnType
是通过以下 makro 生成的。
#define LOGGING_DEFINE_OUTPUT(BASE) \
namespace logging { \
struct loggingReturnType : public BASE { \
/*! \brief The provided typedef is used for compile time \
* selection of different implementation of the \
* %logging framework. Thus, it is necessary \
* that any output type supports this type \
* definition, why it is defined here. \
*/ \
typedef BASE output_base_type; \
}; \
}
这个 makro 在配置头中被调用。
编辑 3:她是预处理器输出的链接:http: //www.pasteall.org/31617/cpp。该文件使用g++
. 的定义loggingReturnType
是 - 之前的最后一个,main
所以单例不是确切的类型,但它仍然有效。我还查看了Keil
编译器的预处理器输出,几乎是一样的。
那么这里出了什么问题呢?