llvm-svn: 270288
This commit is contained in:
Alexander Kornienko 2016-05-20 22:42:03 +00:00
parent 95e84c5123
commit 1c6d827015
1 changed files with 3 additions and 3 deletions

View File

@ -10,13 +10,13 @@ Right now it only handles free functions, not member functions.
Given:
.. code:: C++
.. code:: c++
int add(int x, int y) { return x + y; }
Then:
.. code:: C++
.. code:: c++
void f() {
int x = 2;
@ -25,7 +25,7 @@ Then:
is replaced by:
.. code:: C++
.. code:: c++
void f() {
int x = 2;