Sfoglia il codice sorgente

Fix: Put unused var into comments to later use.

Kim Kulling 2 anni fa
parent
commit
7f0c388ad8
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      code/AssetLib/DXF/DXFLoader.cpp

+ 2 - 1
code/AssetLib/DXF/DXFLoader.cpp

@@ -581,7 +581,8 @@ void DXFImporter::ParseInsertion(DXF::LineReader& reader, DXF::FileData& output)
 }
 }
 
 
 static constexpr unsigned int DXF_POLYLINE_FLAG_CLOSED = 0x1;
 static constexpr unsigned int DXF_POLYLINE_FLAG_CLOSED = 0x1;
-static constexpr unsigned int DXF_POLYLINE_FLAG_3D_POLYLINE = 0x8;
+// Currently unused
+//static constexpr unsigned int DXF_POLYLINE_FLAG_3D_POLYLINE = 0x8;
 static constexpr unsigned int DXF_POLYLINE_FLAG_3D_POLYMESH = 0x10;
 static constexpr unsigned int DXF_POLYLINE_FLAG_3D_POLYMESH = 0x10;
 static constexpr unsigned int DXF_POLYLINE_FLAG_POLYFACEMESH = 0x40;
 static constexpr unsigned int DXF_POLYLINE_FLAG_POLYFACEMESH = 0x40;