diff options
author | Daniel Burrows <dburrows@debian.org> | 2010-04-19 21:43:37 -0700 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2010-04-19 21:43:37 -0700 |
commit | 50a28dbe7bf116aba0ff13dfd2cbe972b7df2d09 (patch) | |
tree | b596f3786ded5a875605a92aac3c6cda65970328 /src/generic/problemresolver/incremental_expression.h | |
parent | 59a5f4c8e4cd46aa43769eec6acf2a8b770ede1d (diff) | |
download | aptitude-50a28dbe7bf116aba0ff13dfd2cbe972b7df2d09.tar.gz |
Fix a line that couldn't possibly have compiled.
I'm guessing that nothing was instantiating that method.
Diffstat (limited to 'src/generic/problemresolver/incremental_expression.h')
-rw-r--r-- | src/generic/problemresolver/incremental_expression.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/generic/problemresolver/incremental_expression.h b/src/generic/problemresolver/incremental_expression.h index 57393ac9..683e4cba 100644 --- a/src/generic/problemresolver/incremental_expression.h +++ b/src/generic/problemresolver/incremental_expression.h @@ -1,6 +1,6 @@ /** \file incremental_expression.h */ // -*-c++-*- -// Copyright (C) 2009 Daniel Burrows +// Copyright (C) 2009-2010 Daniel Burrows // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as @@ -367,7 +367,7 @@ public: expression_wrapper &operator=(const expression_wrapper &other) { - set_child(other.get_child); + set_child(other.get_child()); return *this; } |