Skip to content

Commit

Permalink
fixed errors (#4202)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelvin Rodriguez authored Dec 17, 2020
1 parent 26b5fd8 commit 67b7713
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions isis/src/base/apps/bandnorm/bandnorm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ namespace Isis {
static vector<double> normalizer;

// function prototypes
void getStats(Buffer &in);
void normalize(Buffer &in, Buffer &out);
void Tokenize(const QString &str,
static void getStats(Buffer &in);
static void normalize(Buffer &in, Buffer &out);
static void Tokenize(const QString &str,
vector<QString> & tokens,
const QString &delimiters = " ");

Expand Down
4 changes: 2 additions & 2 deletions isis/src/base/apps/bandnorm/bandnorm.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef std2isis_h
#define std2isis_h
#ifndef bandnorm_h
#define bandnorm_h

#include "UserInterface.h"
#include "Cube.h"
Expand Down

0 comments on commit 67b7713

Please sign in to comment.