diff options
author | Filipe Alves <filipe.alves@bithium.com> | 2016-07-14 09:26:57 (GMT) |
---|---|---|
committer | Filipe Alves <filipe.alves@bithium.com> | 2016-07-14 09:26:57 (GMT) |
commit | 4530978dba88a0d6ccc369e480e6b9a98d29fa1e (patch) | |
tree | 43cd265feb61d9d8da5c28636635e520a1e76341 /src/perlmodgen.cpp | |
parent | f075557bf207d67cf2638298cbdd843cc1a2f7d7 (diff) | |
download | Doxygen-4530978dba88a0d6ccc369e480e6b9a98d29fa1e.zip Doxygen-4530978dba88a0d6ccc369e480e6b9a98d29fa1e.tar.gz Doxygen-4530978dba88a0d6ccc369e480e6b9a98d29fa1e.tar.bz2 |
Allow verbatim code block to be placed on the output.
Diffstat (limited to 'src/perlmodgen.cpp')
-rw-r--r-- | src/perlmodgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perlmodgen.cpp b/src/perlmodgen.cpp index 8683654..8d425a5 100644 --- a/src/perlmodgen.cpp +++ b/src/perlmodgen.cpp @@ -653,8 +653,8 @@ void PerlModDocVisitor::visit(DocVerbatim *s) m_output.add("<programlisting>"); parseCode(m_ci,s->context(),s->text(),FALSE,0); m_output.add("</programlisting>"); -#endif return; +#endif case DocVerbatim::Verbatim: type = "preformatted"; break; case DocVerbatim::HtmlOnly: type = "htmlonly"; break; case DocVerbatim::RtfOnly: type = "rtfonly"; break; |