aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-08-03 17:11:51 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2011-08-04 13:55:15 -0300
commit1e04343e905c35efd58f85c9ba7105d209522278 (patch)
tree51138c75a597ca06fa5c321f929c560e14b9c45c /main.cpp
parent127ad5d710b3b584666efd6d939bf068b0b9d202 (diff)
Find the package name even when no classes were found.
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/main.cpp b/main.cpp
index 804faf7d1..0bd882056 100644
--- a/main.cpp
+++ b/main.cpp
@@ -317,10 +317,8 @@ int main(int argc, char *argv[])
if (!extractor.run())
return EXIT_FAILURE;
- if (!extractor.classCount()) {
- std::cerr << "No C++ classes found!" << std::endl;
- return EXIT_FAILURE;
- }
+ if (!extractor.classCount())
+ ReportHandler::warning("No C++ classes found!");
foreach (Generator* g, generators) {
g->setOutputDirectory(outputDirectory);