Vimrc: set breakindent
This commit is contained in:
parent
a6968146cf
commit
19c356883c
1
.vimrc
1
.vimrc
|
@ -19,6 +19,7 @@ set backspace=indent,eol,start
|
||||||
color backbone
|
color backbone
|
||||||
set number
|
set number
|
||||||
nmap <F6> :set invlist<cr>
|
nmap <F6> :set invlist<cr>
|
||||||
|
set breakindent " https://www.linux.org.ru/forum/general/10615635?lastmod=1403800233259
|
||||||
|
|
||||||
" Setup for the GNU coding format standard
|
" Setup for the GNU coding format standard
|
||||||
function! GnuIndent()
|
function! GnuIndent()
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
class A1 {
|
||||||
|
public:
|
||||||
|
A1 () {
|
||||||
|
cout << "A1() called" << endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual ~A1 () { // won't be called if non-virtual
|
||||||
|
cout << "~A1() called" << endl;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
class A2 : public A1 {
|
||||||
|
public:
|
||||||
|
A2 () {
|
||||||
|
cout << "A2() called" << endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
~A2 () {
|
||||||
|
cout << "~A2() called" << endl;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
int main (int argc, char *argv[])
|
||||||
|
{
|
||||||
|
A1 *ap = new A2();
|
||||||
|
delete ap;
|
||||||
|
}
|
Loading…
Reference in New Issue