The BOOST_PP_SET_POP_BACK macro pops an element from the end of a set.

Usage

BOOST_PP_SET_POP_BACK(set)

Arguments

set
The set to pop an element from.

Remarks

This macro returns set after removing the last element. 

See Also

Requirements

Header:  <boost/preprocessor/set/pop_back.hpp>

Sample Code

#include <boost/preprocessor/set/pop_back.hpp>

#define SET (a)(b)(c)

BOOST_PP_SET_POP_BACK(SET) // expands to (a)(b)