1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

the module is not required to exist, allow it to default, giving this

class a nice default ctor.

llvm-svn: 65731
This commit is contained in:
Chris Lattner 2009-02-28 22:41:33 +00:00
parent 28f2b3c2a4
commit 34181d9bcc

View File

@ -33,7 +33,7 @@ class TypePrinting {
TypePrinting(const TypePrinting &); // DO NOT IMPLEMENT TypePrinting(const TypePrinting &); // DO NOT IMPLEMENT
void operator=(const TypePrinting&); // DO NOT IMPLEMENT void operator=(const TypePrinting&); // DO NOT IMPLEMENT
public: public:
TypePrinting(const Module *M); TypePrinting(const Module *M = 0);
~TypePrinting(); ~TypePrinting();
void clear(); void clear();