summaryrefslogtreecommitdiff
path: root/src/nodedef.h
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2020-07-10 12:11:44 +0200
committerGitHub <noreply@github.com>2020-07-10 12:11:44 +0200
commitc6422e087257d661a30ee2cd281ccec91f2f90ca (patch)
tree8845e2f5d136a38a553d9d759adcfa5a847f7c9e /src/nodedef.h
parentb1ff04e06da531dc52f6ee91e2967b39743033e6 (diff)
downloadminetest-c6422e087257d661a30ee2cd281ccec91f2f90ca.tar.gz
minetest-c6422e087257d661a30ee2cd281ccec91f2f90ca.tar.bz2
minetest-c6422e087257d661a30ee2cd281ccec91f2f90ca.zip
Remove std::shared_ptr use in TileLayer (#10090)
Diffstat (limited to 'src/nodedef.h')
-rw-r--r--src/nodedef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nodedef.h b/src/nodedef.h
index 0992001e1..cf03abaae 100644
--- a/src/nodedef.h
+++ b/src/nodedef.h
@@ -409,7 +409,7 @@ struct ContentFeatures
*/
ContentFeatures();
- ~ContentFeatures() = default;
+ ~ContentFeatures();
void reset();
void serialize(std::ostream &os, u16 protocol_version) const;
void deSerialize(std::istream &is);