citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 85fb4d3d585708ac69148f4b7513edc7b12ca64b
parent a614fce0e51e0c64bbddfd7794fcd7f81d08870b
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Fri, 25 Mar 2016 11:39:41 -0600

instrument: forgot a line in main

Diffstat:
Minstrument/main.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/instrument/main.cc b/instrument/main.cc @@ -81,7 +81,7 @@ instrument(int argc, char *argv[], std::vector<std::string> const &source_files) // that will return a new MyFrontendAction object every time. To // further customize this, we could create our own factory class. // int ret = Tool.run(new MFAF(inst_files)); - int ret = Tool.run(newFrontendActionFactory<MyFrontendAction>()); + int ret = Tool.run(newFrontendActionFactory<InstrumentAction>()); if (ret) warnx("Instrumentation failed"); return ret;