make rimpl type really a reference

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@495 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-01-18 19:03:25 +00:00
parent 39ea27e017
commit 319f949eee
4 changed files with 11 additions and 6 deletions

View file

@ -1,6 +1,6 @@
BIN = main
CC = gcc
CXXFLAGS = -Wall -O2
CXXFLAGS = -Wall -O2 -pedantic
CPPFLAGS = -I../../include -DNDEBUG
LDFLAGS = -L../../lib
LDLIBS = -lloki

View file

@ -66,7 +66,7 @@ public:
private:
Rimpl<C>::Init rinit;
Rimpl<C>::Type& d;
Rimpl<C>::Type d;
};

View file

@ -58,7 +58,7 @@ public:
private:
Rimpl<C2>::Init rint;
Rimpl<C2>::Type& d;
Rimpl<C2>::Type d;
};