소스 검색

Merge pull request #68 from nmreadelf/feat/float-void-typeid-example

add public keyword `float` `void*` typeid example
vczh 3 년 전
부모
커밋
8ef270fc3d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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;
 };