aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/c++.md
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2020-04-19 22:13:44 +0200
committerjohannst <johannes.stoelp@gmail.com>2020-04-19 22:13:44 +0200
commitfef4d6ff2ad9f48e6dccde0f061453e6a3ac624e (patch)
treec21dfcf8e7c8895a94e1c72cb9588c94794656b1 /src/c++.md
parent43e402ba2320ced7972d33c9442b2745afe230f6 (diff)
downloadnotes-fef4d6ff2ad9f48e6dccde0f061453e6a3ac624e.tar.gz
notes-fef4d6ff2ad9f48e6dccde0f061453e6a3ac624e.zip
added new hierarchy
Diffstat (limited to 'src/c++.md')
-rw-r--r--src/c++.md12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/c++.md b/src/c++.md
deleted file mode 100644
index d9fbbda..0000000
--- a/src/c++.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# c++
-
-## Type deduction
-
-Force compile error to see what `auto` is deduced to.
-```cpp
-auto foo = bar();
-
-// force compile error
-typename decltype(foo)::_;
-```
-