summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Yifan Hong <elsk@google.com> 2017-09-13 15:44:56 -0700
committer Yifan Hong <elsk@google.com> 2017-09-14 13:40:27 -0700
commit91e655dc2be238fafcf832c73e62166d7b69c848 (patch)
treec626216d7d6614db01bd13e13f1a4a65c0e4b8e1
parent303322f06a8b32de83e83be605991e78e039b4b7 (diff)
lshal: DISALLOW_COPY_AND_ASSIGN needs to be in private
Test: pass Change-Id: Ic2abdbe0309957f1a72ca4a788bb09dd660c746c
-rw-r--r--cmds/lshal/ListCommand.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmds/lshal/ListCommand.h b/cmds/lshal/ListCommand.h
index 9833d43de5..5047cf88bb 100644
--- a/cmds/lshal/ListCommand.h
+++ b/cmds/lshal/ListCommand.h
@@ -101,6 +101,7 @@ protected:
// If an entry exist and not empty, it contains the cached content of /proc/{pid}/cmdline.
std::map<pid_t, std::string> mCmdlines;
+private:
DISALLOW_COPY_AND_ASSIGN(ListCommand);
};