Mercurial > hg > octave-nkf
diff src/variables.cc @ 5685:40b08b29dd53
[project @ 2006-03-16 19:47:14 by jwe]
author | jwe |
---|---|
date | Thu, 16 Mar 2006 19:47:14 +0000 |
parents | 775e065f7dc4 |
children | a527e0f77aa5 |
line wrap: on
line diff
--- a/src/variables.cc +++ b/src/variables.cc @@ -276,20 +276,20 @@ static std::set <std::string> rawcommand_set; -static inline bool +bool is_marked_as_rawcommand (const std::string& s) { return rawcommand_set.find (s) != rawcommand_set.end (); } -static inline void +void mark_as_rawcommand (const std::string& s) { command_set.insert (s); rawcommand_set.insert (s); } -static inline void +void unmark_rawcommand (const std::string& s) { rawcommand_set.erase (s);