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:
|
||||
|
||||
#include "../include/loki/OrderedStatic.h"
|
||||
#include <loki/OrderedStatic.h>
|
||||
#include <limits>
|
||||
|
||||
namespace Loki
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
// without express or implied warranty.
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "../include/loki/Singleton.h"
|
||||
#include <loki/Singleton.h>
|
||||
|
||||
|
||||
#ifdef LOKI_ENABLE_NEW_SETLONGLIVITY_HELPER_DATA_IMPL
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
// $Header$
|
||||
|
||||
|
||||
#include "../include/loki/SmallObj.h"
|
||||
#include <loki/SmallObj.h>
|
||||
|
||||
#include <cassert>
|
||||
#include <vector>
|
||||
|
@ -1224,6 +1224,9 @@ bool SmallObjAllocator::IsCorrupt( void ) const
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// $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
|
||||
// Added function to trim excess capacity from Chunk container.
|
||||
//
|
||||
|
|
|
@ -15,15 +15,15 @@
|
|||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include "loki/Factory.h"
|
||||
#include "loki/Functor.h"
|
||||
#include <loki/Factory.h>
|
||||
#include <loki/Functor.h>
|
||||
|
||||
#ifdef LOKI_DISABLE_TYPELIST_MACROS
|
||||
#define USE_WQUENCE
|
||||
#endif
|
||||
|
||||
#ifdef USE_SEQUENCE
|
||||
#include "loki/Sequence.h"
|
||||
#include <loki/Sequence.h>
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -303,6 +303,9 @@ int main()
|
|||
|
||||
|
||||
// $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
|
||||
// remove system(PAUSE) for gcc, Thanks to Lukas Fittl
|
||||
//
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
#include <iostream>
|
||||
|
||||
#include "loki/Singleton.h"
|
||||
#include <loki/Singleton.h>
|
||||
|
||||
|
||||
struct L1
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
//
|
||||
|
||||
#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 Loki; // okay for small programs
|
||||
|
|
|
@ -18,11 +18,11 @@
|
|||
// define to see a runtime crash when not using OrderedStatic
|
||||
//#define LOKI_CLASS_LEVEL_THREADING
|
||||
|
||||
#include "loki/Functor.h"
|
||||
#include <loki/Functor.h>
|
||||
#include <iostream>
|
||||
|
||||
#ifdef TEST_ORDERED_STATIC
|
||||
#include "loki/OrderedStatic.h"
|
||||
#include <loki/OrderedStatic.h>
|
||||
#endif
|
||||
|
||||
struct L1
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "loki/TypeTraits.h"
|
||||
#include <loki/TypeTraits.h>
|
||||
|
||||
// Macros for testing isX variables
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
// warranty.
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "loki/SafeFormat.h"
|
||||
#include <loki/SafeFormat.h>
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
#include <utility>
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
//
|
||||
|
||||
#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 Loki; // okay for small programs
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
|
||||
#include <iostream>
|
||||
|
||||
#include "loki/SmallObj.h"
|
||||
#include "loki/Function.h"
|
||||
#include <loki/SmallObj.h>
|
||||
#include <loki/Function.h>
|
||||
|
||||
|
||||
using namespace Loki;
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
//
|
||||
|
||||
#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 Loki; // okay for small programs
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
//#define NO_ITERATOR_TRAITS
|
||||
#endif
|
||||
|
||||
#include "loki/flex/flex_string.h"
|
||||
#include <loki/flex/flex_string.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdio>
|
||||
|
|
Loading…
Add table
Reference in a new issue