Skip to content

Commit 04bbf57

Browse files
authored
A lecture about move semantics (#58)
1 parent db7a206 commit 04bbf57

19 files changed

+2214
-0
lines changed

.clang-format

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
Language: Cpp
3+
BasedOnStyle: Google
4+
AllowShortBlocksOnASingleLine: true
5+
AllowShortCaseLabelsOnASingleLine: true
6+
AllowShortFunctionsOnASingleLine: All
7+
AllowShortLoopsOnASingleLine: true
8+
AllowShortIfStatementsOnASingleLine: true
9+
BinPackArguments: false
10+
BinPackParameters: false
11+
...

animation/value_semantics/.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Generated files
2+
node_modules
3+
output
4+
dist
5+
6+
# Editor directories and files
7+
.vscode/*
8+
!.vscode/extensions.json
9+
.idea
10+
.DS_Store
11+
*.suo
12+
*.ntvs*
13+
*.njsproj
14+
*.sln
15+
*.sw?

0 commit comments

Comments
 (0)