-
**Is your feature request related to a problem? Please describe.**
Its okay to not want to implement constructors and destructors because they come with a whole host of issues.
But not having to…
-
The UseSynthesizedInitializer initialiser does not seem to cover default initializers - only memberwise ones.
See https://docs.swift.org/swift-book/documentation/the-swift-programming-language/in…
-
Hello,
Am I doing something wrong or why do I always get
```
boost/process/initializers/initializer_combination_category.hpp:29:60: error: no type named ‘combination_category’ in ‘const struct boos…
-
Any possiblity to support Designated Initializers syntax?
For example, we have a struct definition and struct variable here:
```
struct s {
int a;
int b;
};
struct s var = {};
```
when i t…
-
The grammar and semantics of field initializers are not quite right in chapter 10.
```
field-initializer:
single-quoted-string-literal => expression
integer-literal => expression
…
-
There should be an explanation in this lab or at a prior point of what each of the initializer types are and how they function.
-
Further to my last issue #318 this might be related or it might not be but I am sure at some point in the past Intellisense was working for Object Initializers. Eg: `var user = new User { Name = "Brad…
-
It suddenly occurs to me that I forget about `init=` and other copy initializers. I will soon implement them like `List.list`.
It would be very useful if we can build a heap from a list in O(N), in…
-
Should we use:
```
StudentName student = new StudentName
{
FirstName = "John",
LastName = "Doe",
Id = 116
};
```
or:
```
StudentName student = new StudentName
{…
-
It'll be good to fix the compilation warnings happening for loadgen.
```
-- The C compiler identification is GNU 11.4.0
-- The CXX compiler identification is GNU 11.4.0
-- Detecting C compiler ABI…