Skip to content

Commit

Permalink
Renamed runtime namespace to match ParseTree caps
Browse files Browse the repository at this point in the history
  • Loading branch information
jimtahu committed May 10, 2013
1 parent fc9e26d commit 9581d46
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion AssingmentStatement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace ParseTree {

using namespace runtime;
using namespace RunTime;

AssingmentStatement::AssingmentStatement(Identifier *id, Value *value) {
this->id=id;
Expand Down
2 changes: 1 addition & 1 deletion Identifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace ParseTree {

using namespace std;
using namespace runtime;
using namespace RunTime;

Identifier::Identifier(string name) {
this->Name = name;
Expand Down
2 changes: 1 addition & 1 deletion ListVariable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include "ListVariable.h"

namespace runtime {
namespace RunTime {

using namespace std;

Expand Down
2 changes: 1 addition & 1 deletion ListVariable.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#include "Variable.h"

namespace runtime {
namespace RunTime {

class ListItem {
public:
Expand Down
2 changes: 1 addition & 1 deletion ScalarVariable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <map>
#include "ScalarVariable.h"

namespace runtime{
namespace RunTime{

using namespace std;

Expand Down
2 changes: 1 addition & 1 deletion ScalarVariable.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#include "Variable.h"

namespace runtime {
namespace RunTime {

std::string setScalar(std::string name, std::string value);
std::string getScalar(std::string name);
Expand Down
2 changes: 1 addition & 1 deletion Util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ int main(int argc, char *argv[]) {
delete ex;
}
delete theProg;
runtime::cleanScalars();
RunTime::cleanScalars();
return 0;
}//end main

2 changes: 1 addition & 1 deletion Variable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "Variable.h"

namespace runtime{
namespace RunTime{

using namespace std;

Expand Down
2 changes: 1 addition & 1 deletion Variable.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#include <string>

namespace runtime {
namespace RunTime {

class Variable {
private:
Expand Down

0 comments on commit 9581d46

Please sign in to comment.