Skip to content

Commit

Permalink
cyber: fix wrong macro var name and remove useless deps
Browse files Browse the repository at this point in the history
  • Loading branch information
baowanyu authored and fengqikai1414 committed Sep 30, 2019
1 parent dd81d06 commit 3ba6f47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion cyber/logger/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ cc_library(
"logger.h",
],
deps = [
"//cyber/base:macros",
"//cyber/common",
"//cyber/logger:log_file_object",
],
Expand Down
6 changes: 3 additions & 3 deletions cyber/logger/async_logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* limitations under the License.
*****************************************************************************/

#ifndef INCLUDE_CYBER_COMMON_ASYNC_LOGGER_H_
#define INCLUDE_CYBER_COMMON_ASYNC_LOGGER_H_
#ifndef CYBER_LOGGER_ASYNC_LOGGER_H_
#define CYBER_LOGGER_ASYNC_LOGGER_H_

#include <atomic>
#include <condition_variable>
Expand Down Expand Up @@ -221,4 +221,4 @@ class AsyncLogger : public google::base::Logger {
} // namespace cyber
} // namespace apollo

#endif // CYBER_COMMON_ASYNC_LOGGER_H_
#endif // CYBER_LOGGER_ASYNC_LOGGER_H_
1 change: 0 additions & 1 deletion cyber/logger/logger.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
#include <unordered_map>
#include <utility>

#include "cyber/base/macros.h"
#include "cyber/logger/log_file_object.h"
#include "cyber/logger/logger_util.h"

Expand Down

0 comments on commit 3ba6f47

Please sign in to comment.