Skip to content

Commit 2a61976

Browse files
Brought back include and using statements
It's bad but...not worth breaking everything over trying to fix it right now.
1 parent c4b18cf commit 2a61976

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

Stochastic/VCellStoch/src/Gibson.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <cstdlib>
1616
#include <iostream>
1717
#include <random>
18+
using namespace std;
1819

1920
#include <ctime>
2021
#include "../include/IndexedTree.h"

VCell/src/PostProcessingHdf5Writer.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
#include <H5Cpp.h>
1212
#include <iostream>
1313
#include <fstream>
14+
#include <utility>
15+
using std::cout;
16+
using std::endl;
1417
#include <sys/stat.h>
1518

1619
#define POST_PROCESSING_ROOT "/PostProcessing"

VCellMessaging/include/VCELL/SimulationMessaging.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
#ifdef USE_MESSAGING
66
#include <stdlib.h>
77
#include <stdio.h>
8-
#include <iostream>
98
#include <memory>
109

1110
#endif
1211
#include <iostream>
12+
using namespace std;
1313

1414
#if (defined(WIN32) || defined(WIN64) )
1515
#include <windows.h>

VCellMessaging/src/SimulationMessaging.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
#include <iostream>
33
#include <algorithm>
44
#include <sstream>
5+
#include <utility>
6+
using std::cerr;
7+
using std::cout;
8+
using std::endl;
59

610
#include <cstdio>
711
#ifdef USE_MESSAGING

0 commit comments

Comments
 (0)