File tree Expand file tree Collapse file tree 7 files changed +10
-1
lines changed
Expand file tree Collapse file tree 7 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ SET(LIBSTEPUTILS_PRIVATE_HDRS
2020)
2121
2222include_directories (
23+ ${SCL_SOURCE_DIR} /src/base
2324 ${SCL_BINARY_DIR} /include
2425 ${CMAKE_CURRENT_SOURCE_DIR}
2526)
@@ -29,4 +30,4 @@ add_definitions( -DSCL_BASE_DLL_IMPORTS )
2930add_definitions ( -DSCL_UTILS_DLL_EXPORTS )
3031endif ()
3132
32- SCL_ADDLIB (steputils "${LIBSTEPUTILS_SRCS} " "" )
33+ SCL_ADDLIB (steputils "${LIBSTEPUTILS_SRCS} " "base " )
Original file line number Diff line number Diff line change 5353#include < string>
5454#include < iostream>
5555
56+ #include < scl_memmgr.h>
57+
5658// /////////////////////////////////////////////////////////////////////////////
5759//
5860// Create a new DirObj object.
@@ -76,6 +78,7 @@ DirObj::DirObj( const char * dirName ) {
7678
7779DirObj::~DirObj () {
7880 ClearFileList ();
81+ delete [] fileList;
7982}
8083
8184// ////////////////////////////// RealPath() ///////////////////////////////////
Original file line number Diff line number Diff line change 1212
1313#include < errordesc.h>
1414#include < Str.h>
15+ #include < scl_memmgr.h>
1516
1617DebugLevel ErrorDescriptor::_debug_level = DEBUG_OFF;
1718ostream * ErrorDescriptor::_out = 0 ;
Original file line number Diff line number Diff line change 1414
1515#include < gennode.h>
1616#include < gennodelist.h>
17+ #include < scl_memmgr.h>
1718
1819// ////////////////////////////////////////////////////////////////////////////
1920// class GenericNode inline functions that depend on other classes
Original file line number Diff line number Diff line change 1717#include < gennode.h>
1818#include < gennodelist.h>
1919#include < gennodearray.h>
20+ #include < scl_memmgr.h>
2021
2122#ifndef HAVE_MEMMOVE
2223extern " C" {
Original file line number Diff line number Diff line change 1616#include < gennodelist.h>
1717// #include <gennode.inline.h>
1818#include < gennodearray.h>
19+ #include < scl_memmgr.h>
1920
2021// inserts after existNode
2122void GenNodeList::InsertAfter ( GenericNode * newNode,
Original file line number Diff line number Diff line change 1111#include < stdio.h>
1212#include < stdlib.h>
1313#include < string.h>
14+ #include < scl_memmgr.h>
1415
1516/* ************/
1617/* constants */
You can’t perform that action at this time.
0 commit comments