| 1929 | } |
| 1930 | |
| 1931 | static bool InvalidArguments(bool* invalid, bool arguments) |
| 1932 | { |
| 1933 | if (!arguments) |
| 1934 | { |
| 1935 | *invalid = true; |
| 1936 | return false; |
| 1937 | } |
| 1938 | return true; |
| 1939 | } |
| 1940 | |
| 1941 | void InteractiveConsole::Execute(const std::string& s) |
| 1942 | { |
no outgoing calls
no test coverage detected