From 6ce6f0126e2e45aa28ecda40bdd63b921e1791f4 Mon Sep 17 00:00:00 2001 From: Yusheng Hsu Date: Tue, 13 Oct 2020 01:29:25 -0700 Subject: [PATCH] Enable BUILD_EASYLOGGINGPP=OFF --- common/post-processing-filters-list.h | 4 ++-- src/l500/ac-trigger.cpp | 1 + src/terminal-parser.cpp | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/common/post-processing-filters-list.h b/common/post-processing-filters-list.h index a60ba83418..029920fe00 100644 --- a/common/post-processing-filters-list.h +++ b/common/post-processing-filters-list.h @@ -39,11 +39,11 @@ struct post_processing_filters_list } catch( std::exception const& e ) { - LOG( ERROR ) << "Failed to start " << name << ": " << e.what(); + LOG_ERROR( "Failed to start " << name << ": " << e.what()); } catch( ... ) { - LOG( ERROR ) << "Failed to start " << name << ": unknown exception"; + LOG_ERROR( "Failed to start " << name << ": unknown exception"); } return std::shared_ptr< T >(); } diff --git a/src/l500/ac-trigger.cpp b/src/l500/ac-trigger.cpp index 204f9b8328..886782c0e2 100644 --- a/src/l500/ac-trigger.cpp +++ b/src/l500/ac-trigger.cpp @@ -14,6 +14,7 @@ #include #else #include // mkdir +#include // std::cout #endif diff --git a/src/terminal-parser.cpp b/src/terminal-parser.cpp index 97deffb0b3..0a5ff60542 100644 --- a/src/terminal-parser.cpp +++ b/src/terminal-parser.cpp @@ -2,6 +2,7 @@ // Copyright(c) 2020 Intel Corporation. All Rights Reserved. #include "terminal-parser.h" +#include namespace librealsense {