Kaynağa Gözat

add public keyword `float` `void*` typeid example

`float` and `void*` typeid exmaple add public keywork
nmreadelf 3 yıl önce
ebeveyn
işleme
b306167a0e
1 değiştirilmiş dosya ile 2 ekleme ve 0 silme
  1. 2 0
      ReadMe.md

+ 2 - 0
ReadMe.md

@@ -1099,6 +1099,7 @@ void PrintID()
 
 template <> class TypeToID<float>
 {
+public:
     static int const ID = 0xF10A7;
 };
 ```
@@ -1108,6 +1109,7 @@ template <> class TypeToID<float>
 ``` C++
 template <> class TypeToID<void*>
 {
+public:
     static int const ID = 0x401d;
 };