aboutsummaryrefslogtreecommitdiff
path: root/217
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2025-09-28 20:26:15 +0200
committerRodrigo <rodarima@gmail.com>2025-09-28 23:10:55 +0200
commitfb510ea86be5ceb9e91573890242581fdbd77ad8 (patch)
treed819fe40683592008d136727f5a0b03e48dc1164 /217
Initial versionHEADmain
Diffstat (limited to '217')
-rw-r--r--217/index.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/217/index.md b/217/index.md
new file mode 100644
index 0000000..a4bf245
--- /dev/null
+++ b/217/index.md
@@ -0,0 +1,14 @@
+Title: Defaulted and deleted functions only available with ‘-std=c++11’
+Author: rodarima
+Created: Sun, 07 Jul 2024 16:51:38 +0000
+State: closed
+
+The `= default` is C++11:
+
+```
+container.hh:254:25: warning: defaulted and deleted functions only available with ‘-std=c++11’ or ‘-std=gnu++11’
+ 254 | virtual ~Node() = default;
+ | ^~~~~~~
+```
+
+Let's try to keep the std requirement at C++98. \ No newline at end of file