Changeset 361 for trunk/src/engine/program_manager.cc
- Timestamp:
- 05/15/15 12:01:41 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/engine/program_manager.cc
r323 r361 49 49 if ( table.is_string( "files" ) ) 50 50 { 51 out += nv::slurp( table.get_st ring( "files" ) );51 out += nv::slurp( table.get_std_string( "files" ) ); 52 52 } 53 53 else if ( table.is_table( "files" ) ) … … 65 65 if ( table.is_string( "file" ) ) 66 66 { 67 out += "#line 1\n" +nv::slurp( table.get_string( "file" ) );67 out += "#line 1\n" + nv::slurp( table.get_std_string( "file" ) ); 68 68 } 69 69 70 70 if ( table.is_string( "source" ) ) 71 71 { 72 out += table.get_st ring( "source" );72 out += table.get_std_string( "source" ); 73 73 } 74 74 }
Note: See TracChangeset
for help on using the changeset viewer.