Merge "Fixes LogEvent constructor to use reference."
This commit is contained in:
committed by
Android (Google) Code Review
commit
6ca5c8495a
@@ -30,7 +30,7 @@ using android::util::ProtoOutputStream;
|
||||
|
||||
// We need to keep a copy of the android_log_event_list owned by this instance so that the char*
|
||||
// for strings is not cleared before we can read them.
|
||||
LogEvent::LogEvent(log_msg msg) : mList(msg) {
|
||||
LogEvent::LogEvent(log_msg& msg) : mList(msg) {
|
||||
init(msg.entry_v1.sec * NS_PER_SEC + msg.entry_v1.nsec, &mList);
|
||||
}
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ public:
|
||||
/**
|
||||
* Read a LogEvent from a log_msg.
|
||||
*/
|
||||
explicit LogEvent(log_msg msg);
|
||||
explicit LogEvent(log_msg& msg);
|
||||
|
||||
/**
|
||||
* Constructs a LogEvent with the specified tag and creates an android_log_event_list in write
|
||||
|
||||
Reference in New Issue
Block a user