some lint

This commit is contained in:
tqchen@graphlab.com
2014-08-18 12:57:31 -07:00
parent e9bfc026b7
commit c4b21775fa
3 changed files with 4 additions and 3 deletions

View File

@@ -117,7 +117,7 @@ struct MetaInfo {
}
// try to load weight information from file, if exists
inline bool TryLoadFloatInfo(const char *field, const char* fname, bool silent = false) {
std::vector<float> &weights = this->GetInfo(field);
std::vector<float> &weights = this->GetInfo(field);
FILE *fi = fopen64(fname, "r");
if (fi == NULL) return false;
float wt;