commit | 70c03661bd2328c153075d938fb3ed57fc5ff404 | [log] [tgz] |
---|---|---|
author | Erik Kline <ek@google.com> | Thu Mar 31 11:39:53 2016 +0900 |
committer | Erik Kline <ek@google.com> | Thu Mar 31 11:39:53 2016 +0900 |
tree | 9b03332f262c53ee0e749caf6455d781cdc66d16 | |
parent | 0f15055ba127da5c8bff3617f04ac6df0b4ee2f4 [diff] [blame] |
Switch from android::netd::List to std::list Change-Id: I3e6560bbc46fd551d3501227250536cabeff4f71
diff --git a/server/PppController.h b/server/PppController.h index cc74c8c..7ca5435 100644 --- a/server/PppController.h +++ b/server/PppController.h
@@ -19,9 +19,9 @@ #include <linux/in.h> -#include "List.h" +#include <list> -typedef android::netd::List<char *> TtyCollection; +typedef std::list<char *> TtyCollection; class PppController { TtyCollection *mTtys;