Use system include directives for libpldm headers
libpldm is now an external dependency rather than an in-tree library.
Adjust the includes accordingly.
Change-Id: Ib2590b823039d3127d65f66976b294a2fb88e9c1
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
diff --git a/platform-mc/event_manager.hpp b/platform-mc/event_manager.hpp
index 21199e0..b1461d7 100644
--- a/platform-mc/event_manager.hpp
+++ b/platform-mc/event_manager.hpp
@@ -1,8 +1,5 @@
#pragma once
-#include "libpldm/platform.h"
-#include "libpldm/pldm.h"
-
#include "common/types.hpp"
#include "numeric_sensor.hpp"
#include "pldmd/dbus_impl_requester.hpp"
@@ -10,6 +7,9 @@
#include "terminus.hpp"
#include "terminus_manager.hpp"
+#include <libpldm/platform.h>
+#include <libpldm/pldm.h>
+
namespace pldm
{
namespace platform_mc