1
1
Fixed compiler warnings seen with the Clang compiler.

This commit was SVN r30121.
Этот коммит содержится в:
Matthias Jurenz 2014-01-06 14:03:01 +00:00
родитель 40aadab85f
Коммит 03c5791104
4 изменённых файлов: 13 добавлений и 10 удалений

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

@ -126,7 +126,6 @@ CTree<string>* addToTree(string parent, uint32_t pid, string child,
if (cur_pos == NULL) { if (cur_pos == NULL) {
CTree<string> *children = new CTree<string> (); CTree<string> *children = new CTree<string> ();
children = children;
children->item = parent; children->item = parent;
children->str_hash = pid; children->str_hash = pid;

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

@ -118,7 +118,8 @@ DefinitionsC::DefinitionsC()
// create instance of sub-class GroupCountersC // create instance of sub-class GroupCountersC
// //
m_groupCntrs = new GroupCountersC( *this ); // m_groupCntrs = new GroupCountersC( *this );
m_groupCntrs = new GroupCountersC();
vt_assert( m_groupCntrs ); vt_assert( m_groupCntrs );
// create instance of sub-class CommentsC // create instance of sub-class CommentsC
@ -128,7 +129,8 @@ DefinitionsC::DefinitionsC()
// create instance of sub-class ProcessGroupsC // create instance of sub-class ProcessGroupsC
// //
m_procGrps = new ProcessGroupsC( *this ); // m_procGrps = new ProcessGroupsC( *this );
m_procGrps = new ProcessGroupsC();
vt_assert( m_procGrps ); vt_assert( m_procGrps );
} }

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

@ -126,7 +126,8 @@ class DefinitionsC::GroupCountersC
public: public:
// constructor // constructor
GroupCountersC( DefinitionsC & _defs ) : m_defs( _defs ) {} // GroupCountersC( DefinitionsC & _defs ) : m_defs( _defs ) {}
GroupCountersC() {}
// destructor // destructor
~GroupCountersC() {} ~GroupCountersC() {}
@ -190,7 +191,7 @@ public:
private: private:
// reference to parent class instance // reference to parent class instance
DefinitionsC & m_defs; // DefinitionsC & m_defs;
// set of global process group tokens which have counters // set of global process group tokens which have counters
std::set<uint32_t> m_procGrps; std::set<uint32_t> m_procGrps;
@ -255,7 +256,8 @@ class DefinitionsC::ProcessGroupsC
public: public:
// constructor // constructor
ProcessGroupsC( DefinitionsC & _defs ) : m_defs( _defs ) {} // ProcessGroupsC( DefinitionsC & _defs ) : m_defs( _defs ) {}
ProcessGroupsC() {}
// destructor // destructor
~ProcessGroupsC() ~ProcessGroupsC()
@ -451,7 +453,7 @@ private:
std::vector<UniqueMembersS*> m_uniqueMembers; std::vector<UniqueMembersS*> m_uniqueMembers;
// reference to parent class instance // reference to parent class instance
DefinitionsC & m_defs; // DefinitionsC & m_defs;
}; };

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

@ -1574,10 +1574,10 @@ void vt_cupticb_resource(CUpti_CallbackId cbid,
/* mark the stream as destroyed to be available for reuse */ /* mark the stream as destroyed to be available for reuse */
vt_cuptiact_markStreamAsDestroyed(resData->context, vt_cuptiact_markStreamAsDestroyed(resData->context,
strmID); strmID);
}
vt_cntl_msg(2, "[CUPTI Callbacks] Destroying stream %d (context %d)", vt_cntl_msg(2, "[CUPTI Callbacks] Destroying stream %d (context %d)",
strmID, resData->context); strmID, resData->context);
}
} }
break; break;