Skip to content

Commit

Permalink
PR #7554 from hsuys: Enable BUILD_EASYLOGGINGPP=OFF
Browse files Browse the repository at this point in the history
  • Loading branch information
maloel authored Oct 14, 2020
2 parents 405772c + 6ce6f01 commit 37d4121
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/post-processing-filters-list.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 >();
}
Expand Down
1 change: 1 addition & 0 deletions src/l500/ac-trigger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <direct.h>
#else
#include <sys/stat.h> // mkdir
#include <iostream> // std::cout
#endif


Expand Down
1 change: 1 addition & 0 deletions src/terminal-parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Copyright(c) 2020 Intel Corporation. All Rights Reserved.

#include "terminal-parser.h"
#include <iostream>

namespace librealsense
{
Expand Down

0 comments on commit 37d4121

Please sign in to comment.