ifcparse: fix clang-tidy warning readability-identifier-length

This commit is contained in:
Dirk Olbrich
2023-11-06 20:29:00 +01:00
committed by Thomas Krijnen
parent eea9a14722
commit 47a2971c65
25 changed files with 651 additions and 625 deletions
+4 -4
View File
@@ -54,12 +54,12 @@ class IFC_PARSE_API IfcSpfStream {
bool eof;
unsigned int size;
#ifdef USE_MMAP
IfcSpfStream(const std::string& fn, bool mmap = false);
IfcSpfStream(const std::string& path, bool mmap = false);
#else
IfcSpfStream(const std::string& fn);
IfcSpfStream(const std::string& path);
#endif
IfcSpfStream(std::istream& f, int len);
IfcSpfStream(void* data, int len);
IfcSpfStream(std::istream& stream, int length);
IfcSpfStream(void* data, int length);
~IfcSpfStream();
/// Returns the character at the cursor
char Peek();