11-30-2009 12:57 PM
In my old application written with VC++ MFC I was using Measurement Studio 6.0 to control GPIB devices. Now I tried recompiling this project with Microsoft Visual Studio 2008 and got the same error in two places:
Error: “error C4430: missing type specifier - int assumed. Note: C++ does not support default-int”
Source code: nidataproxy.h(line 181) :inline operator ! () const;Source code: nidataproxy.inl(361) :
CNiSafeArrayProxy::operator ! () const { return (rawData == NULL);Simple fix by adding one specifier do inline definition does not solve problem, because this definition is used with different types. Do you have solution for this problem?12-01-2009 10:43 AM