Okay, no more ints that need to be changed. Started splitting out the common allocation and array code into a separate sharedbits/ folder.

This commit is contained in:
Pietro Gagliardi 2019-05-30 22:46:22 -04:00
parent c090dacc4a
commit dc8620f9a8
4 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,5 @@
// 30 may 2019
#ifndef sharedbitsPrefix
#error you must define sharedbitsPrefix before including this
#endif

6
sharedbits/alloc_impl.h Normal file
View File

@ -0,0 +1,6 @@
// 30 may 2019
// requires: alloc_header.h
#ifndef sharedbitsPrefix
#error you must define sharedbitsPrefix before including this
#endif

View File

@ -0,0 +1,6 @@
// 30 may 2019
// requires: alloc_header.h
#ifndef sharedbitsPrefix
#error you must define sharedbitsPrefix before including this
#endif

6
sharedbits/array_impl.h Normal file
View File

@ -0,0 +1,6 @@
// 30 may 2019
// requires: array_header.h
#ifndef sharedbitsPrefix
#error you must define sharedbitsPrefix before including this
#endif