I just got the latest for openwire-cpp and compiled it.  I noticed it has a
msdev project but was created under version 8.  I'm using version 7.

I can't get the following method to compile without an error.

void TraceException::buildMessage(const char* format, va_list& vargs)

The error in this method is 

e:\temp\java\incubator-activemq-4.0.1\Openwire-cpp\src\main\cpp\ppr\TraceException.cpp(48)
: error C3861: 'vsnprintf': identifier not found, even with
argument-dependent lookup


Could I convert line 49 from
        int size = vsnprintf(buffer.c_array(), buffer.size(), format,
vargs);

to 
        int size = _vsnprintf(buffer.c_array(), buffer.size(), format,
vargs);

it appears that it is the same thing. Just wanted to check and make sure.


-- 
View this message in context: 
http://www.nabble.com/Openwire-Client-CPP-tf1992852.html#a5469088
Sent from the ActiveMQ - Dev forum at Nabble.com.

Reply via email to