错误C4430:缺少类型说明符 - 假定为int。注意:C ++不支持default-int - Prev解决方案不起作用

时间:2016-05-21 00:18:23

标签: c++ visual-studio-2010 visual-c++ ace tao

我正在Visual Studio 2010中编译VC ++代码。代码中的这一行给出了两个错误:

assert.h
//ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_Export void __ace_assert(const char *file, int line, const ACE_TCHAR *expression);
//ACE_END_VERSIONED_NAMESPACE_DECL

我将这些文件包含在此文件中:

#include /**/ "ace/pre.h"
#include /**/ "ace/ACE_export.h"
#include /**/ "ace/config-all.h"
#include "ace/Versioned_Namespace.h"

错误:

  1. 错误C4430:缺少类型说明符 - 假定为int。注意:C ++不支持default-int

  2. 错误C2143:语法错误:'*'之前缺少','

  3. 这条线可能导致这些错误有什么问题?

    我发现其他帖子报告了类似的错误,但到目前为止,没有一个解决方案对我有用。试过:Error C4430, C2146 - missing type specifier - int assumed. Note: C++ does not support default-int

    VC++ missing type specifier - int assumed. Note: C++ does not support default-int

    Error 2 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

    Compiler error C4430: missing type specifier - int assumed

    谢谢。

1 个答案:

答案 0 :(得分:0)

如果 assert.h 在您的程序中完全如图所示,那就是问题所在。尝试包括断言。

x = np.linspace(A.min(), A.max(), 10+1)
bin = np.digitize(A, x)
Xn = np.zeros((len(X), len(x)))
np.add.at(Xn, (idx,bin-1), 1)
Xn /= Xn.sum(axis=1)[:,np.newaxis]

另外,请确保定义了#include "assert.h" ACE_Export

行号和确切的编译器消息会有所帮助。