replace tabs with 4 spaces

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@681 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-06-19 12:46:22 +00:00
parent 30f4e933c1
commit fd6b9484ee
16 changed files with 210 additions and 210 deletions

View file

@ -275,16 +275,16 @@ void test_more()
Loki::Printf("\n\nMore tests:\n");
Loki::Printf("\nCreating Pimpls\n");
P1* p1 = new P1;
P1* p1 = new P1;
P2* p2 = new P2;
P3* p3 = new P3;
P4* p4 = new P4;
P5* p5 = new P5;
PO1* p6 = new PO1;
PO2* p7 = new PO2;
PO1* p6 = new PO1;
PO2* p7 = new PO2;
PO3* p8 = new PO3;
PO4* p9 = new PO4;
PO5* p10 = new PO5;
PO4* p9 = new PO4;
PO5* p10 = new PO5;
Loki::Printf("\nConst check\n");
p1->f();
@ -292,11 +292,11 @@ void test_more()
p3->f();
p4->f();
p5->f();
p6->f();
p7->f();
p6->f();
p7->f();
p8->f();
p9->f();
p10->f();
p9->f();
p10->f();
Loki::Printf("\nDeleting Pimpls\n");
delete p1;
@ -305,10 +305,10 @@ void test_more()
delete p4;
delete p5;
delete p6;
delete p7;
delete p8;
delete p9;
delete p10;
delete p7;
delete p8;
delete p9;
delete p10;
Loki::Printf("\nCreating Rimpls\n");
@ -318,22 +318,22 @@ void test_more()
R4* r4 = new R4;
R5* r5 = new R5;
RO1* r6 = new RO1;
RO1* r6 = new RO1;
RO2* r7 = new RO2;
RO3* r8 = new RO3;
RO4* r9 = new RO4;
RO5* r10 = new RO5;
r1->f();
r1->f();
r2->f();
r3->f();
r4->f();
r5->f();
r6->f();
r7->f();
r8->f();
r9->f();
r10->f();
r7->f();
r8->f();
r9->f();
r10->f();
Loki::Printf("\nDeleting Rimpls\n");
delete r1;
@ -342,10 +342,10 @@ void test_more()
delete r4;
delete r5;
delete r6;
delete r7;
delete r8;
delete r9;
delete r10;
delete r7;
delete r8;
delete r9;
delete r10;
Loki::Printf("\nCreating const Pimpls\n");
@ -356,10 +356,10 @@ void test_more()
const P5* cp5 = new P5;
const PO1* cp6 = new PO1;
const PO2* cp7 = new PO2;
const PO2* cp7 = new PO2;
const PO3* cp8 = new PO3;
const PO4* cp9 = new PO4;
const PO5* cp10 = new PO5;
const PO4* cp9 = new PO4;
const PO5* cp10 = new PO5;
Loki::Printf("\nConst check\n");
cp1->f();
@ -368,10 +368,10 @@ void test_more()
cp4->f();
cp5->f();
cp6->f();
cp7->f();
cp8->f();
cp9->f();
cp10->f();
cp7->f();
cp8->f();
cp9->f();
cp10->f();
Loki::Printf("\nDeleting const Pimpls\n");
delete cp1;
@ -379,9 +379,9 @@ void test_more()
delete cp3;
delete cp4;
delete cp5;
delete cp6;
delete cp7;
delete cp8;
delete cp6;
delete cp7;
delete cp8;
delete cp9;
delete cp10;
delete cp10;
}

View file

@ -36,7 +36,7 @@ public:
void foo();
private:
PimplT<A>::Type d;
PimplT<A>::Type d;
};
@ -102,11 +102,11 @@ typedef std::auto_ptr<ImplT<E> > StdAutoPtr;
// Pimpl
typedef Pimpl<ImplT<E> > Pimpl1;
typedef Pimpl<ImplT<E>, CPropPtr> Pimpl2;
typedef Pimpl<ImplT<E>, LokiPtr> Pimpl3;
typedef Pimpl<ImplT<E>, BoostPtr> Pimpl4;
typedef Pimpl<ImplT<E>, StdAutoPtr> Pimpl5;
typedef Pimpl<ImplT<E> > Pimpl1;
typedef Pimpl<ImplT<E>, CPropPtr> Pimpl2;
typedef Pimpl<ImplT<E>, LokiPtr> Pimpl3;
typedef Pimpl<ImplT<E>, BoostPtr> Pimpl4;
typedef Pimpl<ImplT<E>, StdAutoPtr> Pimpl5;
struct P1 {Pimpl1 d; P1();void f();void f()const;};
struct P2 {Pimpl2 d; P2();void f();void f()const;};
@ -117,10 +117,10 @@ struct P5 {Pimpl5 d; P5();void f();void f()const;};
// PimplOwner
typedef PimplOwner<ImplT<E> > PimplOwner1;
typedef PimplOwner<ImplT<E>, CPropPtr> PimplOwner2;
typedef PimplOwner<ImplT<E>, LokiPtr> PimplOwner3;
typedef PimplOwner<ImplT<E>, BoostPtr> PimplOwner4;
typedef PimplOwner<ImplT<E> > PimplOwner1;
typedef PimplOwner<ImplT<E>, CPropPtr> PimplOwner2;
typedef PimplOwner<ImplT<E>, LokiPtr> PimplOwner3;
typedef PimplOwner<ImplT<E>, BoostPtr> PimplOwner4;
typedef PimplOwner<ImplT<E>, StdAutoPtr>PimplOwner5;
struct PO1 : private PimplOwner1 {PO1();void f();void f()const;};

View file

@ -30,7 +30,7 @@ public:
void foo();
private:
PimplT<A2>::Type d;
PimplT<A2>::Type d;
};
@ -87,7 +87,7 @@ public:
Incomplete1();
void foo();
private:
PimplT<Incomplete1>::Type d;
PimplT<Incomplete1>::Type d;
};
class Incomplete2
@ -97,7 +97,7 @@ public:
~Incomplete2();
void foo();
private:
PimplT<Incomplete2>::Type d;
PimplT<Incomplete2>::Type d;
};
@ -114,7 +114,7 @@ public:
}
void foo();
private:
PimplT<Incomplete3>::Type d;
PimplT<Incomplete3>::Type d;
};
#endif
@ -130,5 +130,5 @@ public:
Incomplete4();
void foo();
private:
Pimpl<Impl4, std::auto_ptr<Impl4> > d;
Pimpl<Impl4, std::auto_ptr<Impl4> > d;
};