Skip to content
Open
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
1 change: 1 addition & 0 deletions src/common/ObjectParser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include "ObjectParser.h"
#include "Translator.h"
#include "Value.h"
#include <stdint.h>

namespace magics {

Expand Down
5 changes: 3 additions & 2 deletions src/magics.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
#include <iostream>
#include <sstream>
#include <string>
#include <stdint.h>

using std::cerr;
using std::cout;
Expand Down Expand Up @@ -376,9 +377,9 @@ inline MAGICS_NO_EXPORT string buildSharePath(const string& config, const string
found = libpath.find_last_of("/\\");
magplushome = libpath.substr(0,found);
}
else
else
#endif
magplushome = string(MAGICS_INSTALL_PATH);
magplushome = string(MAGICS_INSTALL_PATH);
}
ostringstream out;
out << magplushome << "/share/magics/" << config;
Expand Down