2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

Boost Jam cleanup - changed one remaining quoted assert.h include to use angle brackets instead of quotes, minor stylistic change.

[SVN r80180]
This commit is contained in:
Jurko Gospodnetić
2012-08-25 01:18:15 +00:00
parent a62e58fab6
commit 9b319bb413

View File

@@ -11,7 +11,8 @@
#include "jam.h"
#include "lists.h"
#include "assert.h"
#include <assert.h>
struct freelist_node { struct freelist_node * next; };
@@ -239,7 +240,7 @@ void list_free( LIST * head )
LIST * list_pop_front( LIST * l )
{
unsigned size = list_length( l );
assert( size != 0 );
assert( size );
--size;
object_free( list_front( l ) );