|
From: <gi...@gp...> - 2010-12-21 13:07:54
|
The branch, master has been updated
via 5c0e88f2d44c4a22b6afa770750f2a599b048e2b (commit)
from a759c4a8360a686f7f415ef28f42c3d0d3296b64 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
src/parse_l.l | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
=================
Commit Messages
=================
commit 5c0e88f2d44c4a22b6afa770750f2a599b048e2b
Author: Peter Clifton <pc...@ca...>
Commit: Peter Clifton <pc...@ca...>
parse_l.l: Fix warning implicit definition of function âCreateBeLenientâ
Warning was introduced in commit e8dd18a2f7b83c6108d2c9398903d4be92e22d4c
The required prototype was added to create.h, but create.h was not
included in parse_l.l
Note to developers:
Please "make clean" and build with "make -s" before pushing changes.
This kind of bug is really easy to catch, and I just recently spent
a log of effort cleaning up PCB's compile so we can catch real bugs!
Pretty please?
:100644 100644 4ed5741... 9799250... M src/parse_l.l
=========
Changes
=========
commit 5c0e88f2d44c4a22b6afa770750f2a599b048e2b
Author: Peter Clifton <pc...@ca...>
Commit: Peter Clifton <pc...@ca...>
parse_l.l: Fix warning implicit definition of function âCreateBeLenientâ
Warning was introduced in commit e8dd18a2f7b83c6108d2c9398903d4be92e22d4c
The required prototype was added to create.h, but create.h was not
included in parse_l.l
Note to developers:
Please "make clean" and build with "make -s" before pushing changes.
This kind of bug is really easy to catch, and I just recently spent
a log of effort cleaning up PCB's compile so we can catch real bugs!
Pretty please?
diff --git a/src/parse_l.l b/src/parse_l.l
index 4ed5741..9799250 100644
--- a/src/parse_l.l
+++ b/src/parse_l.l
@@ -61,6 +61,7 @@ RCSID("$Id$");
#include "strflags.h"
#include "parse_l.h"
#include "parse_y.h"
+#include "create.h"
#define YY_NO_INPUT
|