Changeset 782 for code/branches/FICN/src/orxonox
- Timestamp:
- Jan 1, 2008, 2:00:08 PM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/Orxonox.cc
r768 r782 282 282 COUT(3) << "Info: network framelistener added" << std::endl; 283 283 } 284 catch( std::exception &e)284 catch(...) 285 285 { 286 286 COUT(1) << "Error: There was a problem initialising the server :(" << std::endl; -
code/branches/FICN/src/orxonox/OrxonoxPlatform.h
r768 r782 211 211 212 212 // disable: "conversion from 'double' to 'float', possible loss of data 213 # pragma warning (disable : 4244)213 //# pragma warning (disable : 4244) 214 214 215 215 // disable: "conversion from 'size_t' to 'unsigned int', possible loss of data 216 # pragma warning (disable : 4267)216 //# pragma warning (disable : 4267) 217 217 218 218 // disable: "truncation from 'double' to 'float' … … 221 221 // disable: "<type> needs to have dll-interface to be used by clients' 222 222 // Happens on STL member variables which are not public therefore is ok 223 # pragma warning (disable : 4251)223 //# pragma warning (disable : 4251) 224 224 225 225 // disable: "non dll-interface class used as base for dll-interface class" -
code/branches/FICN/src/orxonox/core/Language.cc
r729 r782 245 245 if (lineString.compare("") != 0) 246 246 { 247 unsigned int pos = (unsigned int)lineString.find('=');247 unsigned int pos = lineString.find('='); 248 248 249 249 // Check if the length is at least 3 and if there's an entry before and behind the = … … 288 288 if (lineString.compare("") != 0) 289 289 { 290 unsigned int pos = (unsigned int)lineString.find('=');290 unsigned int pos = lineString.find('='); 291 291 292 292 // Check if the length is at least 3 and if there's an entry before and behind the = -
code/branches/FICN/src/orxonox/objects/Model.cc
r742 r782 69 69 70 70 void Model::registerAllVariables(){ 71 registerVar(&meshSrc_, (int)meshSrc_.length() + 1, network::STRING);71 registerVar(&meshSrc_, meshSrc_.length() + 1, network::STRING); 72 72 } 73 73 }
Note: See TracChangeset
for help on using the changeset viewer.