Added missing includes (iostream) for the tests

This commit is contained in:
Jesse Beder
2011-11-13 16:12:39 -06:00
parent 5abfbf5aac
commit 6f4608ce05
5 changed files with 5 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
#include "nodetests.h"
#include "yaml-cpp/yaml.h"
#include <iostream>
namespace {
struct TEST {

View File

@@ -1,6 +1,7 @@
#include "spectests.h"
#include "specexamples.h"
#include "yaml-cpp/yaml.h"
#include <iostream>
#define YAML_ASSERT(cond) do { if(!(cond)) return " Assert failed: " #cond; } while(false)