From b306167a0e7d8218dc814a61ce5d8b42f7b2867d Mon Sep 17 00:00:00 2001 From: nmreadelf <7260482+nmreadelf@users.noreply.github.com> Date: Wed, 15 Dec 2021 18:05:34 +0800 Subject: [PATCH] add public keyword `float` `void*` typeid example `float` and `void*` typeid exmaple add public keywork --- ReadMe.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ReadMe.md b/ReadMe.md index 5ff32dc..d0e28d2 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1099,6 +1099,7 @@ void PrintID() template <> class TypeToID { +public: static int const ID = 0xF10A7; }; ``` @@ -1108,6 +1109,7 @@ template <> class TypeToID ``` C++ template <> class TypeToID { +public: static int const ID = 0x401d; };