diff options
author | Sebastian Geerken <devnull@localhost> | 2014-08-10 14:25:46 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-08-10 14:25:46 +0200 |
commit | 47c69d0359c720eed2afb8329e827dee76539de1 (patch) | |
tree | a9644f228d65212ccce0369c8f4ad138daad276f /lout | |
parent | f3ac0e4d3a49f2c7326594e3ae5f424db228ee1c (diff) |
Optimized usage of Layout::queueQueueResizeList.
Diffstat (limited to 'lout')
-rw-r--r-- | lout/container.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lout/container.hh b/lout/container.hh index 03800efd..a7f01732 100644 --- a/lout/container.hh +++ b/lout/container.hh @@ -295,7 +295,8 @@ public: }; /** - * \brief A stack (LIFO). + * \brief A stack (LIFO). Can be used as Queue (FIFO) when pushUnder() + * is used instead of push(). * * Note that the iterator returns all elements in the reversed order they have * been put on the stack. |