fix optimized build

This commit is contained in:
Mathieu Lacage
2007-07-26 08:18:11 +02:00
parent 35e5c48814
commit 9033830375
2 changed files with 3 additions and 1 deletions

View File

@@ -22,6 +22,7 @@
#ifndef PTR_H
#define PTR_H
#include <iostream>
#include <stdint.h>
#include "assert.h"

View File

@@ -43,7 +43,8 @@ RandomVariable *
RandomVariableDefaultValue::GetCopy (void)
{
RandomVariable *variable;
bool ok = Parse (m_value, true, &variable);
bool ok;
ok = Parse (m_value, true, &variable);
NS_ASSERT (ok);
return variable;
}