$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80180 - trunk/tools/build/v2/engine
From: jurko.gospodnetic_at_[hidden]
Date: 2012-08-24 21:18:15
Author: jurko
Date: 2012-08-24 21:18:15 EDT (Fri, 24 Aug 2012)
New Revision: 80180
URL: http://svn.boost.org/trac/boost/changeset/80180
Log:
Boost Jam cleanup - changed one remaining quoted assert.h include to use angle brackets instead of quotes, minor stylistic change.
Text files modified: 
   trunk/tools/build/v2/engine/lists.c |     5 +++--                                   
   1 files changed, 3 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/engine/lists.c
==============================================================================
--- trunk/tools/build/v2/engine/lists.c	(original)
+++ trunk/tools/build/v2/engine/lists.c	2012-08-24 21:18:15 EDT (Fri, 24 Aug 2012)
@@ -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 @@
 LIST * list_pop_front( LIST * l )
 {
     unsigned size = list_length( l );
-    assert( size != 0 );
+    assert( size );
     --size;
     object_free( list_front( l ) );