Ignore:
Timestamp:
05/15/15 12:01:41 (10 years ago)
Author:
epyon
Message:
  • more string_ref changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/engine/program_manager.cc

    r323 r361  
    4949        if ( table.is_string( "files" ) )
    5050        {
    51                 out += nv::slurp( table.get_string( "files" ) );
     51                out += nv::slurp( table.get_std_string( "files" ) );
    5252        }
    5353        else if ( table.is_table( "files" ) )
     
    6565        if ( table.is_string( "file" ) )
    6666        {
    67                 out += "#line 1\n"+nv::slurp( table.get_string( "file" ) );
     67                out += "#line 1\n" + nv::slurp( table.get_std_string( "file" ) );
    6868        }
    6969
    7070        if ( table.is_string( "source" ) )
    7171        {
    72                 out += table.get_string( "source" );
     72                out += table.get_std_string( "source" );
    7373        }
    7474}
Note: See TracChangeset for help on using the changeset viewer.