From 540848bb24a88062b2817f427568626848f76957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=85?= Date: Wed, 30 Aug 2017 14:47:00 +0800 Subject: [PATCH] FIX example lib --- mace/examples/BUILD | 2 +- mace/examples/helloworld.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mace/examples/BUILD b/mace/examples/BUILD index 55cb535c..0df8fd3c 100644 --- a/mace/examples/BUILD +++ b/mace/examples/BUILD @@ -7,7 +7,7 @@ cc_binary( "helloworld.cc", ], deps = [ - "//mace/core:lib_core", + "//mace/core:core", ], linkopts = if_android(["-pie", "-llog"]) ) diff --git a/mace/examples/helloworld.cc b/mace/examples/helloworld.cc index f4883a85..0ba6d38e 100644 --- a/mace/examples/helloworld.cc +++ b/mace/examples/helloworld.cc @@ -1,7 +1,7 @@ #include "mace/core/logging.h" int main() { - LOG(INFO, "Hello World"); + LOG(INFO) << "Hello World"; return 0; } -- GitLab