Changeset 534 for trunk/src/engine/program_manager.cc
- Timestamp:
- 01/12/17 14:41:17 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/engine/program_manager.cc
r505 r534 50 50 stream* fstream = open_stream( fs, path ); 51 51 if ( !fstream ) return const_string(); 52 uint32 size = fstream->size();52 uint32 size = static_cast< uint32 >( fstream->size() ); 53 53 const_string result( nullptr, size ); 54 54 fstream->read( const_cast<char*>( result.data() ), size, 1 );
Note: See TracChangeset
for help on using the changeset viewer.