[Cppunit-cvs] cppunit/doc Money.dox,1.1,1.2
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-07-05 20:14:25
|
Update of /cvsroot/cppunit/cppunit/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31880 Modified Files: Money.dox Log Message: * fixed sample unix sample makefile LDFLAGS duplication * m_currency member initialization Index: Money.dox =================================================================== RCS file: /cvsroot/cppunit/cppunit/doc/Money.dox,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Money.dox 21 Apr 2002 10:57:52 -0000 1.1 --- Money.dox 5 Jul 2005 20:14:14 -0000 1.2 *************** *** 83,88 **** MoneyApp_SOURCES = Money.h MoneyTest.h MoneyTest.cpp MoneyApp.cpp MoneyApp_CXXFLAGS = $(CPPUNIT_CFLAGS) ! MoneyApp_LDFLAGS = $(CPPUNIT_LIBS) ! MoneyApp_LDFLAGS = -ldl\endverbatim --- 83,87 ---- MoneyApp_SOURCES = Money.h MoneyTest.h MoneyTest.cpp MoneyApp.cpp MoneyApp_CXXFLAGS = $(CPPUNIT_CFLAGS) ! MoneyApp_LDFLAGS = $(CPPUNIT_LIBS) -ldl\endverbatim *************** *** 306,310 **** Money( double amount, std::string currency ) : m_amount( amount ) ! , m_currency( m_currency ) { } --- 305,309 ---- Money( double amount, std::string currency ) : m_amount( amount ) ! , m_currency( currency ) { } |