diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2021-01-26 10:41:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 10:41:55 +0100 |
commit | 50a94f972d26ee15fc22cce657d13023d1022905 (patch) | |
tree | 24417c741cf85061b73098a32e61ecd3749be05e /src/Generating/Caves.cpp | |
parent | Redstone: inline -> static (diff) | |
download | cuberite-50a94f972d26ee15fc22cce657d13023d1022905.tar cuberite-50a94f972d26ee15fc22cce657d13023d1022905.tar.gz cuberite-50a94f972d26ee15fc22cce657d13023d1022905.tar.bz2 cuberite-50a94f972d26ee15fc22cce657d13023d1022905.tar.lz cuberite-50a94f972d26ee15fc22cce657d13023d1022905.tar.xz cuberite-50a94f972d26ee15fc22cce657d13023d1022905.tar.zst cuberite-50a94f972d26ee15fc22cce657d13023d1022905.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/Caves.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Generating/Caves.cpp b/src/Generating/Caves.cpp index 0d22d5b96..39497b45f 100644 --- a/src/Generating/Caves.cpp +++ b/src/Generating/Caves.cpp @@ -105,9 +105,9 @@ public: cChunkDef::HeightMap & a_HeightMap ); - #ifdef _DEBUG + #ifndef NDEBUG AString ExportAsSVG(int a_Color, int a_OffsetX, int a_OffsetZ) const; - #endif // _DEBUG + #endif // !NDEBUG } ; typedef std::vector<cCaveTunnel *> cCaveTunnels; @@ -530,7 +530,7 @@ void cCaveTunnel::ProcessChunk( } // for itr - m_Points[] /* - #ifdef _DEBUG + #ifndef NDEBUG // For debugging purposes, outline the shape of the cave using glowstone, after carving the entire cave: for (cCaveDefPoints::const_iterator itr = m_Points.begin(), end = m_Points.end(); itr != end; ++itr) { @@ -545,7 +545,7 @@ void cCaveTunnel::ProcessChunk( cChunkDef::SetBlock(a_BlockTypes, DifX, itr->m_BlockY, DifZ, E_BLOCK_GLOWSTONE); } } // for itr - m_Points[] - #endif // _DEBUG + #endif // !NDEBUG //*/ } @@ -553,7 +553,7 @@ void cCaveTunnel::ProcessChunk( -#ifdef _DEBUG +#ifndef NDEBUG AString cCaveTunnel::ExportAsSVG(int a_Color, int a_OffsetX, int a_OffsetZ) const { AString SVG; @@ -568,7 +568,7 @@ AString cCaveTunnel::ExportAsSVG(int a_Color, int a_OffsetX, int a_OffsetZ) cons SVG.append("\"/>\n"); return SVG; } -#endif // _DEBUG +#endif // !NDEBUG |