mirror of
https://github.com/boostorg/intrusive.git
synced 2025-10-11 07:35:20 +02:00
Trailing whitespaces
[SVN r78516]
This commit is contained in:
@@ -38,14 +38,14 @@ entity::~entity()
|
||||
|
||||
//Function to insert a new "some_entity" in the global list
|
||||
void insert_some_entity()
|
||||
{ global_list.push_back (*new some_entity(/*...*/)); }
|
||||
{ global_list.push_back (*new some_entity(/*...*/)); }
|
||||
|
||||
//Function to clear an entity from the intrusive global list
|
||||
void clear_list ()
|
||||
{
|
||||
// entity's destructor removes itself from the global list implicitly
|
||||
while (!global_list.empty())
|
||||
delete &global_list.front();
|
||||
delete &global_list.front();
|
||||
}
|
||||
|
||||
int main()
|
||||
|
Reference in New Issue
Block a user