brintos

brintos / llvm-project-archived public Read only

0
0
Text · 707 B · dc787bf Raw
20 lines · plain
1{{! 2    Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3    See https://llvm.org/LICENSE.txt for license information.4    SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5 6    This file defines the template for functions/methods7}}8<div class="delimiter-container">9    <div id="{{USR}}">10        {{! Function Prototype }}11        <pre><code class="language-cpp code-clang-doc">{{ReturnType.Name}} {{Name}} ({{#Params}}{{^End}}{{Type}} {{Name}}, {{/End}}{{#End}}{{Type}} {{Name}}{{/End}}{{/Params}})</code></pre>12        {{! Function Comments }}13        {{#Description}}14        <div>15            {{>Comments}}16        </div>17        {{/Description}}18    </div>19</div>20