From 08c39eceba170c21d7c4cc015a0b2f91e4a6c124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 25 Aug 2012 01:18:15 +0000 Subject: [PATCH] Boost Jam cleanup - changed one remaining quoted assert.h include to use angle brackets instead of quotes, minor stylistic change. [SVN r80180] --- v2/engine/lists.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v2/engine/lists.c b/v2/engine/lists.c index 87ba34a6a..7e3b4a3f0 100644 --- a/v2/engine/lists.c +++ b/v2/engine/lists.c @@ -11,7 +11,8 @@ #include "jam.h" #include "lists.h" -#include "assert.h" +#include + 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 ) );