Skip to content

Commit

Permalink
(Utility) Added "using namespace rose" to the SMTPathFeasibility project
Browse files Browse the repository at this point in the history
As the ROSE library declarations move into the "rose" namespace, as
with ::StringUtility -> ::rose::StringUtility in a recent commit,
users of librose (projects, tests, etc) will need to either qualify
the ROSE functions and types or add a "using namespace rose". Thus
they'll do the same thing with librose as they do with the STL, boost,
etc.

I've added "using namespace rose" to this project because it
uses rose::StringUtility.
  • Loading branch information
matzke1 committed Jun 16, 2016
1 parent 1e79056 commit 36b72fe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions projects/SMTPathFeasibility/src/smtPragmaPathLib.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "smtPragmaPathLib.h"

using namespace rose;

int initializeScopeInformation(SgProject*);
std::vector<std::string> pragma_suffix;
class visitorTraversal : public SgGraphTraversal<CFGforT>
Expand Down

0 comments on commit 36b72fe

Please sign in to comment.