From 5ec16a177223be19f46c68ed4b99720ecdd3c6ec Mon Sep 17 00:00:00 2001 From: Dave Hickin Date: Tue, 1 Sep 2015 02:40:14 +0100 Subject: [PATCH] Fix build error boolean replaced by bool --- src/nt/nttable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nt/nttable.cpp b/src/nt/nttable.cpp index d584a42..6285460 100644 --- a/src/nt/nttable.cpp +++ b/src/nt/nttable.cpp @@ -195,7 +195,7 @@ bool NTTable::isValid() PVFieldPtrArray const & columns = pvValue->getPVFields(); if (getLabels()->getLength() != columns.size()) return false; - boolean first = true; + bool first = true; int length = 0; for (PVFieldPtrArray::const_iterator it = columns.begin(); it != columns.end();++it)