Ignore:
Timestamp:
05/29/15 17:28:16 (10 years ago)
Author:
epyon
Message:
  • oops, missed src : got rid of to_string and other std::string utilities (except slurp) string no longer in nv namespace
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/formats/assimp_loader.cc

    r376 r380  
    5757
    5858
    59 nv::assimp_loader::assimp_loader( const string& a_ext, uint32 a_assimp_flags /*= 0 */ )
     59nv::assimp_loader::assimp_loader( const std::string& a_ext, uint32 a_assimp_flags /*= 0 */ )
    6060        : m_scene( nullptr ), m_mesh_count(0)
    6161{
     
    374374        const aiScene* scene = (const aiScene*)m_scene;
    375375        const aiNode*  node  = (const aiNode*)vnode;
    376         string name( node->mName.data );
     376        std::string name( node->mName.data );
    377377        const aiAnimation* anim  = scene->mAnimations[anim_id];
    378378        const aiNodeAnim*  anode = nullptr;
Note: See TracChangeset for help on using the changeset viewer.