cppreference.com > C++ Double-ended Queues > pop_back
pop_back
Syntax:
  #include <deque>
  void pop_back();

The pop_back() function removes the last element of the dequeue.

pop_back() runs in constant time.