Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bandnorm test fix #4202

Merged
merged 1 commit into from
Dec 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Comment on lines +1 to +2
Copy link
Collaborator Author

@Kelvinrr Kelvinrr Dec 16, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missed a spot, seemed to be the source of the problems on Linux. Either that or the non static functions.


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