diff options
author | Eike Rathke <erack@redhat.com> | 2017-09-25 13:15:50 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-09-25 13:16:24 +0200 |
commit | bf0996d39cbb0162c037ae1c9037e8c0f9d5b0e7 (patch) | |
tree | f4fd5148d33b58ce1ff8d866df7ee8edd108dff1 /include | |
parent | 7e7b9652f44f01fbaf5bc3fde454ba41ce0fe0f7 (diff) |
Clarify comment of "copy"-ctor and operator=()
Change-Id: Ie6e40e5c08d05ee75e4d1d9d6d8b4e567ecbcdbc
Diffstat (limited to 'include')
-rw-r--r-- | include/formula/tokenarray.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/formula/tokenarray.hxx b/include/formula/tokenarray.hxx index eed55d089921..891b793c3f10 100644 --- a/include/formula/tokenarray.hxx +++ b/include/formula/tokenarray.hxx @@ -292,7 +292,8 @@ public: { nMode = GetCombinedBitsRecalcMode() | nBits; } FormulaTokenArray(); - /// Assignment with references to FormulaToken entries (not copied!) + /** Assignment with incrementing references of FormulaToken entries + (not copied!) */ FormulaTokenArray( const FormulaTokenArray& ); virtual ~FormulaTokenArray(); @@ -468,7 +469,8 @@ public: virtual FormulaToken* MergeArray( ); - /// Assignment with references to FormulaToken entries (not copied!) + /** Assignment with incrementing references of FormulaToken entries + (not copied!) */ FormulaTokenArray& operator=( const FormulaTokenArray& ); /** Determines if this formula needs any changes to convert it to something |