Skip to content
Snippets Groups Projects
Commit 9f3e22e4 authored by Thomas Moulard's avatar Thomas Moulard
Browse files

Fix GCC warnings.

parent d99cfde7
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ namespace dynamicgraph { ...@@ -60,7 +60,7 @@ namespace dynamicgraph {
{ {
protected: protected:
std::string filename; std::string filename;
unsigned int cursor; std::streamoff cursor;
static const unsigned int BUFFER_SIZE = 256; static const unsigned int BUFFER_SIZE = 256;
char buffer[BUFFER_SIZE]; char buffer[BUFFER_SIZE];
std::list< std::string > reader; std::list< std::string > reader;
......
...@@ -56,8 +56,8 @@ class DGTRACERREALTIME_EXPORT OutStringStream ...@@ -56,8 +56,8 @@ class DGTRACERREALTIME_EXPORT OutStringStream
{ {
public: public:
char * buffer; char * buffer;
unsigned int index; size_t index;
unsigned int bufferSize; size_t bufferSize;
bool full; bool full;
std::string givenname; std::string givenname;
...@@ -67,7 +67,7 @@ public: ...@@ -67,7 +67,7 @@ public:
~OutStringStream( void ); ~OutStringStream( void );
void resize( const unsigned int & size ); void resize( const unsigned int & size );
bool addData( const char * data, const unsigned int & size ); bool addData( const char * data, const std::streamoff& size );
void dump( std::ostream& os ); void dump( std::ostream& os );
void empty( void ); void empty( void );
......
...@@ -248,7 +248,7 @@ cmdHelp( const std::string& cmdLine, std::istringstream& cmdArg, std::ostream& o ...@@ -248,7 +248,7 @@ cmdHelp( const std::string& cmdLine, std::istringstream& cmdArg, std::ostream& o
cmdArg >> ws; cmdArg >> ws;
if( cmdArg.good() ) if( cmdArg.good() )
{ {
const unsigned int gc = cmdArg.tellg(); const std::streamoff gc = cmdArg.tellg();
cmdArg >> procname; cmdArg >> procname;
cmdArg.seekg(gc); cmdArg.clear(); cmdArg.seekg(gc); cmdArg.clear();
personalizedHelp = true; personalizedHelp = true;
...@@ -314,9 +314,10 @@ cmdRun( const std::string& cmdLine, std::istringstream& cmdArg, std::ostream& os ...@@ -314,9 +314,10 @@ cmdRun( const std::string& cmdLine, std::istringstream& cmdArg, std::ostream& os
} }
} }
} catch( ExceptionAbstract& exc ) { } catch( ExceptionAbstract& exc ) {
std::string& msg = (std::string&)exc.getStringMessage(); //FIXME: exception should be changed instead.
std::ostringstream oss; std::string& msg = const_cast<std::string&>(exc.getStringMessage());
oss <<" (in line " << lineIdx <<" of file <" << filename << ">)"; std::stringstream oss;
oss << " (in line " << lineIdx <<" of file <" << filename << ">)";
msg = msg + oss.str(); msg = msg + oss.str();
throw exc; throw exc;
} }
......
...@@ -158,8 +158,7 @@ writeGraph(const std::string &aFileName) ...@@ -158,8 +158,7 @@ writeGraph(const std::string &aFileName)
#endif /*WIN32*/ #endif /*WIN32*/
/* Opening the file and writing the first comment. */ /* Opening the file and writing the first comment. */
std::ofstream GraphFile; std::ofstream GraphFile (aFileName.c_str(),std::ofstream::out);
GraphFile.open((char *)aFileName.c_str(),std::ofstream::out);
GraphFile << "/* This graph has been automatically generated. " << std::endl; GraphFile << "/* This graph has been automatically generated. " << std::endl;
GraphFile << " " << 1900+ltimeformatted.tm_year GraphFile << " " << 1900+ltimeformatted.tm_year
<< " Month: " << 1+ltimeformatted.tm_mon << " Month: " << 1+ltimeformatted.tm_mon
......
...@@ -123,7 +123,7 @@ cmdProcedure( const std::string& procname, ...@@ -123,7 +123,7 @@ cmdProcedure( const std::string& procname,
if( args.good() ) if( args.good() )
{ {
std::string argname; std::string argname;
const unsigned int gc = args.tellg(); const std::streamoff gc = args.tellg();
args >> argname; args >> argname;
args.seekg(gc); args.clear(); args.seekg(gc); args.clear();
if( procname==argname ) if( procname==argname )
......
...@@ -464,7 +464,7 @@ cmdCompletionList( const std::string cmdLine, istringstream& cmdArg, std::ostrea ...@@ -464,7 +464,7 @@ cmdCompletionList( const std::string cmdLine, istringstream& cmdArg, std::ostrea
try { try {
std::string aFileName; cmdArg >> aFileName; std::string aFileName; cmdArg >> aFileName;
std::ofstream completionFile((char *)aFileName.c_str()); std::ofstream completionFile(aFileName.c_str());
g_pool.writeCompletionList( completionFile ); g_pool.writeCompletionList( completionFile );
......
...@@ -67,10 +67,10 @@ resize( const unsigned int & size ) ...@@ -67,10 +67,10 @@ resize( const unsigned int & size )
} }
bool OutStringStream:: bool OutStringStream::
addData( const char * data, const unsigned int & size ) addData( const char * data, const std::streamoff& size )
{ {
dgDEBUGIN(15); dgDEBUGIN(15);
unsigned int towrite = size; size_t towrite = static_cast<size_t> (size);
if( index+towrite>bufferSize ) if( index+towrite>bufferSize )
{ {
dgDEBUGOUT(15); dgDEBUGOUT(15);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment