diff options
Diffstat (limited to 'tools/gn/item.cc')
-rw-r--r-- | tools/gn/item.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/gn/item.cc b/tools/gn/item.cc index 747183cb..fa16975 100644 --- a/tools/gn/item.cc +++ b/tools/gn/item.cc @@ -6,7 +6,9 @@ #include "base/logging.h" -Item::Item(const Label& label) : label_(label) { +Item::Item(const Settings* settings, const Label& label) + : settings_(settings), + label_(label) { } Item::~Item() { |