always use #include <loki/...>, Thanks to Lukas Fittl
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@413 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
0161d73572
commit
d5a206bb96
13 changed files with 23 additions and 17 deletions
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
// $Header:
|
// $Header:
|
||||||
|
|
||||||
#include "../include/loki/OrderedStatic.h"
|
#include <loki/OrderedStatic.h>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
|
||||||
namespace Loki
|
namespace Loki
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
// without express or implied warranty.
|
// without express or implied warranty.
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#include "../include/loki/Singleton.h"
|
#include <loki/Singleton.h>
|
||||||
|
|
||||||
|
|
||||||
#ifdef LOKI_ENABLE_NEW_SETLONGLIVITY_HELPER_DATA_IMPL
|
#ifdef LOKI_ENABLE_NEW_SETLONGLIVITY_HELPER_DATA_IMPL
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
// $Header$
|
// $Header$
|
||||||
|
|
||||||
|
|
||||||
#include "../include/loki/SmallObj.h"
|
#include <loki/SmallObj.h>
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -1224,6 +1224,9 @@ bool SmallObjAllocator::IsCorrupt( void ) const
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.22 2006/01/05 00:23:43 syntheticpp
|
||||||
|
// always use #include <loki/...>, Thanks to Lukas Fittl
|
||||||
|
//
|
||||||
// Revision 1.21 2005/12/29 01:54:24 rich_sposato
|
// Revision 1.21 2005/12/29 01:54:24 rich_sposato
|
||||||
// Added function to trim excess capacity from Chunk container.
|
// Added function to trim excess capacity from Chunk container.
|
||||||
//
|
//
|
||||||
|
|
|
@ -15,15 +15,15 @@
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include "loki/Factory.h"
|
#include <loki/Factory.h>
|
||||||
#include "loki/Functor.h"
|
#include <loki/Functor.h>
|
||||||
|
|
||||||
#ifdef LOKI_DISABLE_TYPELIST_MACROS
|
#ifdef LOKI_DISABLE_TYPELIST_MACROS
|
||||||
#define USE_WQUENCE
|
#define USE_WQUENCE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef USE_SEQUENCE
|
#ifdef USE_SEQUENCE
|
||||||
#include "loki/Sequence.h"
|
#include <loki/Sequence.h>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -303,6 +303,9 @@ int main()
|
||||||
|
|
||||||
|
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.12 2006/01/05 00:23:43 syntheticpp
|
||||||
|
// always use #include <loki/...>, Thanks to Lukas Fittl
|
||||||
|
//
|
||||||
// Revision 1.11 2006/01/04 23:54:28 syntheticpp
|
// Revision 1.11 2006/01/04 23:54:28 syntheticpp
|
||||||
// remove system(PAUSE) for gcc, Thanks to Lukas Fittl
|
// remove system(PAUSE) for gcc, Thanks to Lukas Fittl
|
||||||
//
|
//
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#include "loki/Singleton.h"
|
#include <loki/Singleton.h>
|
||||||
|
|
||||||
|
|
||||||
struct L1
|
struct L1
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "loki/Singleton.h" // for Loki::SingletonHolder
|
#include <loki/Singleton.h> // for Loki::SingletonHolder
|
||||||
|
|
||||||
using namespace std; // okay for small programs
|
using namespace std; // okay for small programs
|
||||||
using namespace Loki; // okay for small programs
|
using namespace Loki; // okay for small programs
|
||||||
|
|
|
@ -18,11 +18,11 @@
|
||||||
// define to see a runtime crash when not using OrderedStatic
|
// define to see a runtime crash when not using OrderedStatic
|
||||||
//#define LOKI_CLASS_LEVEL_THREADING
|
//#define LOKI_CLASS_LEVEL_THREADING
|
||||||
|
|
||||||
#include "loki/Functor.h"
|
#include <loki/Functor.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#ifdef TEST_ORDERED_STATIC
|
#ifdef TEST_ORDERED_STATIC
|
||||||
#include "loki/OrderedStatic.h"
|
#include <loki/OrderedStatic.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct L1
|
struct L1
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "loki/TypeTraits.h"
|
#include <loki/TypeTraits.h>
|
||||||
|
|
||||||
// Macros for testing isX variables
|
// Macros for testing isX variables
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
// warranty.
|
// warranty.
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#include "loki/SafeFormat.h"
|
#include <loki/SafeFormat.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "loki/Singleton.h" // for Loki::SingletonHolder
|
#include <loki/Singleton.h> // for Loki::SingletonHolder
|
||||||
|
|
||||||
using namespace std; // okay for small programs
|
using namespace std; // okay for small programs
|
||||||
using namespace Loki; // okay for small programs
|
using namespace Loki; // okay for small programs
|
||||||
|
|
|
@ -13,8 +13,8 @@
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#include "loki/SmallObj.h"
|
#include <loki/SmallObj.h>
|
||||||
#include "loki/Function.h"
|
#include <loki/Function.h>
|
||||||
|
|
||||||
|
|
||||||
using namespace Loki;
|
using namespace Loki;
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "loki/Singleton.h" // for Loki::SingletonHolder
|
#include <loki/Singleton.h> // for Loki::SingletonHolder
|
||||||
|
|
||||||
using namespace std; // okay for small programs
|
using namespace std; // okay for small programs
|
||||||
using namespace Loki; // okay for small programs
|
using namespace Loki; // okay for small programs
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
//#define NO_ITERATOR_TRAITS
|
//#define NO_ITERATOR_TRAITS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "loki/flex/flex_string.h"
|
#include <loki/flex/flex_string.h>
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
|
Loading…
Add table
Reference in a new issue