Skip to content

Commit

Permalink
Adjust for removing all redundant headers from include/fastrtps (#73)
Browse files Browse the repository at this point in the history
Signed-off-by: EduPonz <[email protected]>
  • Loading branch information
EduPonz authored May 20, 2024
1 parent c3c2e54 commit 6808253
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion include/DiscoveryItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <string>
#include <vector>

#include <fastrtps/rtps/common/Guid.h>
#include <fastdds/rtps/common/Guid.h>

namespace tinyxml2 {
class XMLElement;
Expand Down
12 changes: 6 additions & 6 deletions src/DSLog.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
#undef LOG_NO_ERROR
#endif

#include <fastrtps/log/Log.h>
#include <fastdds/dds/log/Log.hpp>

#define LOG(x) logInfo(DISCOVERY_SERVER,x)
#define LOG_INFO(x) logInfo(DISCOVERY_SERVER,x)
#define LOG_WARN(x) logWarning(DISCOVERY_SERVER,x)
#define LOG_ERROR(x) logError(DISCOVERY_SERVER,x)
#define LOG(x) EPROSIMA_LOG_INFO(DISCOVERY_SERVER,x);
#define LOG_INFO(x) EPROSIMA_LOG_INFO(DISCOVERY_SERVER,x);
#define LOG_WARN(x) EPROSIMA_LOG_WARNING(DISCOVERY_SERVER,x;);
#define LOG_ERROR(x) EPROSIMA_LOG_ERROR(DISCOVERY_SERVER,x);

#endif // _EPROSIMA_IS_LOG_H_
#endif // _EPROSIMA_IS_LOG_H_

0 comments on commit 6808253

Please sign in to comment.