Skip to content

Commit

Permalink
Merge pull request #6 from ossimlabs/std
Browse files Browse the repository at this point in the history
Std namespace fixes
  • Loading branch information
tculp authored Aug 6, 2019
2 parents 75f1719 + 5a3849d commit ea37668
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ node ("${BUILD_NODE}") {

stage( "Checkout" ) {
dir( "ossim-csm-plugin" ) {
git branch: "${ OSSIM_GIT_BRANCH }",
git branch: "std",
url: "${GIT_PUBLIC_SERVER_URL}/ossim-csm-plugin.git",
credentialsId: "${CREDENTIALS_ID}"
}
Expand Down Expand Up @@ -116,7 +116,7 @@ node ("${BUILD_NODE}") {
}

stage('Fortify SCA') {
if(BUILD_FORTIFY == "true"){
if(BUILD_WITH_FORTIFY == "true"){
dir("${env.WORKSPACE}/build") {
withCredentials([[$class: 'UsernamePasswordMultiBinding',
credentialsId: 'fortifyCredentials',
Expand Down
2 changes: 2 additions & 0 deletions src/ossimCsmProjectionFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

static ossimTrace traceDebug("ossimCsmProjectionFactory:debug");

using namespace std;

ossimCsmProjectionFactory* ossimCsmProjectionFactory::theInstance = 0;

ossimCsmProjectionFactory* ossimCsmProjectionFactory::instance()
Expand Down
1 change: 1 addition & 0 deletions src/ossimCsmSensorModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ static const ossimString PARAM_UNITS[] ={"pixel",
static ossimTrace traceDebug("ossimCsmSensorModel:debug");

using namespace csm;
using namespace std;

RTTI_DEF1(ossimCsmSensorModel, "ossimCsmSensorModel", ossimSensorModel);

Expand Down

0 comments on commit ea37668

Please sign in to comment.