SCENERIO_EDITOR now compiles.

This commit is contained in:
Justin Marshall
2020-06-05 18:49:43 -07:00
parent d223adebd7
commit ca2e5bc7e6
17 changed files with 1614 additions and 1584 deletions
+1 -13
View File
@@ -47,17 +47,7 @@
* DynamicVectorClass<T>::ID -- Find matching value in the dynamic vector. *
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#ifndef VECTOR_H
#define VECTOR_H
#ifdef NEVER
#ifndef false
#define false 0
#endif
#ifndef true
#define true 1
#endif
#endif
#pragma once
#include <stdlib.h>
#include <stddef.h>
@@ -1008,5 +998,3 @@ int VectorClass<T>::Resize(unsigned newsize, T const * array)
}
return(true);
}
#endif