diff options
author | Nathan Binkert <nate@binkert.org> | 2008-09-19 09:11:40 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-09-19 09:11:40 -0700 |
commit | f066db7fcd49d2234178e5d80db9278c798d9ba8 (patch) | |
tree | 0f1a22a8709a0c3fa59a2a294458092d729f3833 /src/base/inifile.hh | |
parent | 3a3e356f4e61e86f6f1427dd85cf1e41fa9125c0 (diff) | |
download | gem5-f066db7fcd49d2234178e5d80db9278c798d9ba8.tar.xz |
inifile: Whack preprocessor access.
We haven't used the preprocessor feature of the inifile stuff in a
very long time, so let's get rid of it since it would otherwise take
effort to maintain.
Diffstat (limited to 'src/base/inifile.hh')
-rw-r--r-- | src/base/inifile.hh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/base/inifile.hh b/src/base/inifile.hh index a2692919f..83cf80cf0 100644 --- a/src/base/inifile.hh +++ b/src/base/inifile.hh @@ -167,14 +167,6 @@ class IniFile /// @retval True if successful, false if errors were encountered. bool load(std::istream &f); - /// Load the specified file, passing it through the C preprocessor. - /// Parameter settings found in the file will be merged with any - /// already defined in this object. - /// @param file The path of the file to load. - /// @param cppFlags Vector of extra flags to pass to cpp. - /// @retval True if successful, false if errors were encountered. - bool loadCPP(const std::string &file, std::vector<char *> &cppFlags); - /// Load the specified file. /// Parameter settings found in the file will be merged with any /// already defined in this object. |