Skip to content

Commit

Permalink
Remove most compiler warnings in Visual Studio.
Browse files Browse the repository at this point in the history
  • Loading branch information
craigsapp committed Apr 26, 2018
1 parent e208993 commit 48aaaf3
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 96 deletions.
8 changes: 4 additions & 4 deletions include/hum/humlib.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// Programmer: Craig Stuart Sapp <craig@ccrma.stanford.edu>
// Creation Date: Sat Aug 8 12:24:49 PDT 2015
// Last Modified: Mon Apr 16 19:09:46 PDT 2018
// Last Modified: Wed Apr 25 12:08:23 PDT 2018
// Filename: humlib.h
// URL: https://github.com/craigsapp/humlib/blob/master/include/humlib.h
// Syntax: C++11
Expand Down Expand Up @@ -3306,7 +3306,7 @@ class Option_register {
string getOption (void);
string getModified (void);
string getDescription (void);
int isModified (void);
bool isModified (void);
char getType (void);
void reset (void);
void setDefault (const string& aString);
Expand All @@ -3321,7 +3321,7 @@ class Option_register {
string m_description;
string m_defaultOption;
string m_modifiedOption;
int m_modifiedQ;
bool m_modifiedQ;
char m_type;
};

Expand All @@ -3345,7 +3345,7 @@ class Options {
int getArgumentCount (void);
vector<string>& getArgList (vector<string>& output);
vector<string>& getArgumentList (vector<string>& output);
int getBoolean (const string& optionName);
bool getBoolean (const string& optionName);
string getCommand (void);
string getCommandLine (void);
string getDefinition (const string& optionName);
Expand Down
Loading

0 comments on commit 48aaaf3

Please sign in to comment.