From e3640a4ff8357031885499c6cc158621ada38393 Mon Sep 17 00:00:00 2001 From: Nikita Baryshnikov Date: Thu, 11 Jun 2015 17:41:52 +0300 Subject: [PATCH] Callgrind: avoid rude warnings Change-Id: I1c26259defebd60def1670ac7908cd43a1710b67 Reviewed-by: hjk --- src/plugins/valgrind/callgrind/callgrindfunction.h | 2 +- src/plugins/valgrind/callgrind/callgrindfunctioncall.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/valgrind/callgrind/callgrindfunction.h b/src/plugins/valgrind/callgrind/callgrindfunction.h index 39e1becb8e2..78225f398fc 100644 --- a/src/plugins/valgrind/callgrind/callgrindfunction.h +++ b/src/plugins/valgrind/callgrind/callgrindfunction.h @@ -149,6 +149,6 @@ private: } // namespace Callgrind } // namespace Valgrind -Q_DECLARE_METATYPE(const Valgrind::Callgrind::Function *); +Q_DECLARE_METATYPE(const Valgrind::Callgrind::Function *) #endif // LIBVALGRIND_CALLGRIND_FUNCTION_H diff --git a/src/plugins/valgrind/callgrind/callgrindfunctioncall.h b/src/plugins/valgrind/callgrind/callgrindfunctioncall.h index 78be233c050..28728126f70 100644 --- a/src/plugins/valgrind/callgrind/callgrindfunctioncall.h +++ b/src/plugins/valgrind/callgrind/callgrindfunctioncall.h @@ -80,7 +80,7 @@ public: void setCosts(const QVector &costs); private: - Q_DISABLE_COPY(FunctionCall); + Q_DISABLE_COPY(FunctionCall) class Private; Private *d; @@ -89,6 +89,6 @@ private: } // namespace Callgrind } // namespace Valgrind -Q_DECLARE_METATYPE(const Valgrind::Callgrind::FunctionCall *); +Q_DECLARE_METATYPE(const Valgrind::Callgrind::FunctionCall *) #endif // CALLGRINDFUNCTIONCALL_H