File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -63,3 +63,8 @@ Append this to your Emacs configuration
63
63
* Edit ` cpp-params-refcard.org `
64
64
* Save
65
65
* Export <kbd >C-c C-e l o</kbd >
66
+
67
+ # To Do
68
+
69
+ * Add horizontal rules between sections
70
+ * Use _ mononoki_ font for monospace using ` fontspec ` package
Original file line number Diff line number Diff line change @@ -195,12 +195,12 @@ Returning value (both move and copy) will lead to deep copy for [[https://stacko
195
195
#+BEGIN_SRC c++
196
196
// example
197
197
// a move-unfriendly type (has no freestore data members)
198
- struct doc:: Properties {
199
- Point origin;
200
- float size_x, size_y;
201
- std::array<Margin> margin_sizes;
198
+ struct Properties {
199
+ Point origin;
200
+ float size_x, size_y;
201
+ std::array<Margin, 4> margin_sizes;
202
202
};
203
- void Deduce(doc:: Properties& p) {
203
+ void Deduce(Properties& p) {
204
204
}
205
205
#+END_SRC
206
206
You can’t perform that action at this time.
0 commit comments