recalled constructor delegation, and cleaned up whitespace
This commit is contained in:
parent
b4e3409fea
commit
68a3b5167b
@ -207,4 +207,3 @@ Every time a fresh tiny file is created, a background process is started to chec
|
||||
So that files sort in the correct order, we name them in base 36, with a suffix indicating whether they are the fixed length index records, or the variable sized records that the fixed length records point into.
|
||||
|
||||
Although we should make the files friendly for conventional backup for the sake of cold storage, we cannot rely on conventional backup mechanisms, because we have to always have to have very latest state securely backed up before committing it into the blockchain. Which is best done by having a set of remote Sqlite files.
|
||||
|
||||
|
@ -212,7 +212,17 @@ copy and intended assignment.
|
||||
|
||||
## delegating constructors
|
||||
|
||||
calling one constructior from another.
|
||||
calling one constructor from another.
|
||||
|
||||
```C++
|
||||
example::example(... arguments ...):
|
||||
example(...different arguments ...)
|
||||
{
|
||||
...
|
||||
code
|
||||
...
|
||||
};
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user