Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenkernel/BKE_type_conversions.hh')
-rw-r--r--source/blender/blenkernel/BKE_type_conversions.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_type_conversions.hh b/source/blender/blenkernel/BKE_type_conversions.hh
index 8d3b2730a9c..5152989d137 100644
--- a/source/blender/blenkernel/BKE_type_conversions.hh
+++ b/source/blender/blenkernel/BKE_type_conversions.hh
@@ -56,11 +56,11 @@ class DataTypeConversions {
const void *from_value,
void *to_value) const;
- void convert_to_initialized_n(fn::GSpan from_span, fn::GMutableSpan to_span) const;
+ void convert_to_initialized_n(GSpan from_span, GMutableSpan to_span) const;
- fn::GVArray try_convert(fn::GVArray varray, const CPPType &to_type) const;
+ GVArray try_convert(GVArray varray, const CPPType &to_type) const;
- fn::GVMutableArray try_convert(fn::GVMutableArray varray, const CPPType &to_type) const;
+ GVMutableArray try_convert(GVMutableArray varray, const CPPType &to_type) const;
};
const DataTypeConversions &get_implicit_type_conversions();