diff --git a/include/crap/bit b/include/crap/bit index 4a0ca1f..117b94a 100644 --- a/include/crap/bit +++ b/include/crap/bit @@ -22,6 +22,7 @@ #include "bit.d/countronefortype.h" #include "bit.d/countronetype.h" #include "bit.d/countronevalue.h" +#include "bit.d/countrzerofortype.h" #include "bit.d/countrzerotype.h" #include "bit.d/countrzerovalue.h" #include "bit.d/hassinglebittype.h" diff --git a/include/crap/bit.d/countrzerofortype.h b/include/crap/bit.d/countrzerofortype.h new file mode 100644 index 0000000..834f6da --- /dev/null +++ b/include/crap/bit.d/countrzerofortype.h @@ -0,0 +1,14 @@ +#ifndef CRAP_BIT_COUNTRZEROFORTYPE +#define CRAP_BIT_COUNTRZEROFORTYPE + +#include "countrzerovalue.h" + +namespace crap +{ + template struct countrZeroForType + { + template using type = countrZeroValue; + }; +} +#endif +