-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Non-implicit
default constructor is implicit
#398
Comments
I would assume that the default constructor would also not be explicit by default, just like copy/move. |
See also https://quuxplusone.github.io/blog/2023/04/08/most-ctors-should-be-explicit/. // [[pair.piecewise]](https://eel.is/c++draft/pair.piecewise), pair piecewise construction
struct piecewise_construct_t {
explicit piecewise_construct_t() = default;
};
inline constexpr piecewise_construct_t piecewise_construct{};
template<class... Types> class tuple; // defined in [<tuple>](https://eel.is/c++draft/tuple.syn#header:%3ctuple%3e)
// in-place construction
struct in_place_t {
explicit in_place_t() = default;
};
inline constexpr in_place_t in_place{};
template<class T>
struct in_place_type_t {
explicit in_place_type_t() = default;
};
template<class T> constexpr in_place_type_t<T> in_place_type{};
template<size_t I>
struct in_place_index_t {
explicit in_place_index_t() = default;
};
template<size_t I> constexpr in_place_index_t<I> in_place_index{}; |
The most relevant passage is https://quuxplusone.github.io/blog/2023/04/08/most-ctors-should-be-explicit/#every-other-constructor-even-the:
|
Interesting -- I wasn't familiar with |
Title: Non-
implicit
default constructor is implicit.Minimal reproducer (https://cpp2.godbolt.org/z/PfPzbPhcT):
Commands:
cppfront -clean-cpp1 main.cpp2 clang++17 -std=c++2b -stdlib=libc++ -lc++abi -I . main.cpp
Expected result:
Actual result and error:
public: t();
The text was updated successfully, but these errors were encountered: