1
1

Bugfix: Removed *unused* contructors of structure 'FirstHandlerArgument' (Ticket #1318)

This commit was SVN r18578.
Этот коммит содержится в:
Matthias Jurenz 2008-06-04 11:53:17 +00:00
родитель f9b2fa95aa
Коммит 7f5730d073

Просмотреть файл

@ -28,15 +28,6 @@ struct Process {
std::map<uint32_t,uint64_t> f2l; /* contains the functionstack of every process - written = true, ignored = false */
};
struct FiltHandlerArgument {
FiltHandlerArgument() {}
FiltHandlerArgument(const FiltHandlerArgument& src)
: nm2tok(src.nm2tok), t2p(src.t2p),
wstream(src.wstream), mc(src.mc)
{
}
std::map<std::string, uint32_t> nm2tok; /* created during definition reading*/
std::map<uint32_t, Process > t2p;
OTF_WStream* wstream;