You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
The commit 4518026 solves some of the issues, but GDB still complains because the static const value __deque_iterator::__block_size is optimized out by the C++ compiler. __deque_iterator::__block_size is needed in order to print std::deque instances and other containers that use std::deque under the hood, such as std::queue.
The __deque_iterator::__block_size constant is defined as equal to __deque_block_size::value which is defined (depending on some template types) as:
The pretty printing for
std::queue
does not work anymore.The text was updated successfully, but these errors were encountered: