Merge branch 'master' into qt6

This commit is contained in:
Johannes Lenzen
2021-05-03 13:43:34 +02:00
3 changed files with 3 additions and 5 deletions

View File

@@ -54,6 +54,7 @@
#include <fstream>
#include <iostream>
#include <memory>
#include <string>
#ifndef WIN32
#endif
@@ -1089,7 +1090,7 @@ std::string get_property_name(std::string _string1, std::string _string2) {
//-----------------------------------------------------------------------------
_PLYReader_::ValueType get_property_type(std::string& _string1, std::string& _string2) {
_PLYReader_::ValueType get_property_type(const std::string& _string1, const std::string& _string2) {
if (_string1 == "float32" || _string2 == "float32")

View File

@@ -87,9 +87,6 @@ public:
explicit VHierarchyNodeIndex(unsigned int _value)
{ value_ = _value; }
VHierarchyNodeIndex(const VHierarchyNodeIndex &_other)
{ value_ = _other.value_; }
VHierarchyNodeIndex(unsigned int _tree_id,
unsigned int _node_id,
unsigned short _tree_id_bits)