fatal error C1189: #error : "No sstream/strstream implementation"

P

Praveen Chandra

Hi,
I am trying to build a static library, while building the library i am
getting the following error:

fatal error C1189: #error : "No sstream/strstream implementation"

Following is the code that is giving error:

#ifdef HAVE_CONFIG_H

# include <config.h>

#endif

#ifdef HAVE_SSTREAM

# include <sstream>

#elif HAVE_STRSTREAM

# define USE_STRSTREAM_WRAPPERS

#else

# error "No sstream/strstream implementation"

#endif

#if defined(USE_STRSTREAM_WRAPPERS) && !defined(SSTREAM_FIX_H)

#define SSTREAM_FIX_H

#include <string>

#include <strstream>

namespace std

{

/*

* Only limited functionality from ostringstream

* is implemented

*/

class ostringstream : public ostrstream {

public:

string str() {

char *cstr = ostrstream::str();

freeze(0);

if (cstr == 0) return string();

return string(cstr,pcount());

}

};

/*

* Only limited functionality from istringstream

* is implemented

*/

class istringstream : public istrstream {

public:

istringstream(const string& str)

: istrstream(str.c_str()) { }

};

}

#endif



If anyone has a solution for this please let me know.



Thanks,

Praveen.
 
B

Bruno van Dooren

I am trying to build a static library, while building the library i am
getting the following error:

fatal error C1189: #error : "No sstream/strstream implementation"

Following is the code that is giving error:

#ifdef HAVE_CONFIG_H

# include <config.h>

#endif

#ifdef HAVE_SSTREAM

# include <sstream>

#elif HAVE_STRSTREAM

# define USE_STRSTREAM_WRAPPERS

#else

# error "No sstream/strstream implementation"

#endif

did you define the appropriate macros? if so what did you define?
because the code clearly specifies that the error has to be generated if
none of the correct macros have been defined.


--

Kind regards,
Bruno van Dooren
(e-mail address removed)
Remove only "_nos_pam"
 
V

Vladimir Nesterovsky

I am trying to build a static library, while building the library i am
getting the following error:

fatal error C1189: #error : "No sstream/strstream implementation"

Following is the code that is giving error:

It's clear! Neither HAVE_SSTREAM nor HAVE_STRSTREAM is defined. :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top