Pārlūkot izejas kodu

[Fix] Fixing 'is-base-of'

mapleFU 5 gadi atpakaļ
vecāks
revīzija
b104959a1b
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      ReadMe.md

+ 1 - 1
ReadMe.md

@@ -2384,7 +2384,7 @@ template <typename T> void inc_counter(T& intTypeCounter);
 template <typename T> void inc_counter(
   T& counterObj, 
   typename std::enable_if<
-    std::is_base_of<T, ICounter>::value
+    std::is_base_of<ICounter, T>::value
   >::type* = nullptr );
 
 template <typename T> void inc_counter(