@@ -38,21 +38,21 @@ namespace geode
3838 absl::StrCat ( " find_or_create_attribute_constant_" , suffix );
3939 manager.def ( constant_suffix.c_str (),
4040 static_cast < std::shared_ptr< ConstantAttribute< type > > (
41- AttributeManager::* )( absl ::string_view, type ) >(
41+ AttributeManager::* )( std ::string_view, type ) >(
4242 &AttributeManager::find_or_create_attribute< ConstantAttribute,
4343 type > ) );
4444 const auto variable_suffix =
4545 absl::StrCat ( " find_or_create_attribute_variable_" , suffix );
4646 manager.def ( variable_suffix.c_str (),
4747 static_cast < std::shared_ptr< VariableAttribute< type > > (
48- AttributeManager::* )( absl ::string_view, type ) >(
48+ AttributeManager::* )( std ::string_view, type ) >(
4949 &AttributeManager::find_or_create_attribute< VariableAttribute,
5050 type > ) );
5151 const auto sparse_suffix =
5252 absl::StrCat ( " find_or_create_attribute_sparse_" , suffix );
5353 manager.def ( sparse_suffix.c_str (),
5454 static_cast < std::shared_ptr< SparseAttribute< type > > (
55- AttributeManager::* )( absl ::string_view, type ) >(
55+ AttributeManager::* )( std ::string_view, type ) >(
5656 &AttributeManager::find_or_create_attribute< SparseAttribute,
5757 type > ) );
5858 }
0 commit comments