Skip to content
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

Closed
JohelEGP opened this issue May 1, 2023 · 4 comments
Closed

[BUG] Non-implicit default constructor is implicit #398

JohelEGP opened this issue May 1, 2023 · 4 comments
Labels
bug Something isn't working

Comments

@JohelEGP
Copy link
Contributor

JohelEGP commented May 1, 2023

Title: Non-implicit default constructor is implicit.

Minimal reproducer (https://cpp2.godbolt.org/z/PfPzbPhcT):

t: type = {
  operator=: (out this) = { }
}
main: () = { }

Commands:

cppfront -clean-cpp1 main.cpp2
clang++17 -std=c++2b -stdlib=libc++ -lc++abi -I . main.cpp

Expected result:

public: explicit t();

Actual result and error:

public: t();
#include "cpp2util.h"

class t;
  
class t {
  public: t();

  public: t(t const&) = delete;
  public: auto operator=(t const&) -> void = delete;
};
auto main() -> int;

  t::t(){}

auto main() -> int{}
@JohelEGP JohelEGP added the bug Something isn't working label May 1, 2023
@gregmarr
Copy link
Contributor

gregmarr commented May 1, 2023

#375 (comment)

My intent was that explicit should just be the default for converting constructors, not for copy/move constructors.

I would assume that the default constructor would also not be explicit by default, just like copy/move.

@JohelEGP
Copy link
Contributor Author

JohelEGP commented May 1, 2023

See also https://quuxplusone.github.io/blog/2023/04/08/most-ctors-should-be-explicit/.
It's also needed to implement <utility> types.

// [[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{};

@JohelEGP
Copy link
Contributor Author

See also https://quuxplusone.github.io/blog/2023/04/08/most-ctors-should-be-explicit/.

The most relevant passage is https://quuxplusone.github.io/blog/2023/04/08/most-ctors-should-be-explicit/#every-other-constructor-even-the:

Every other constructor (even the zero-argument constructor!) should be explicit or have a very well-understood domain-specific reason why not. Example: string(const char*).

@hsutter
Copy link
Owner

hsutter commented May 15, 2023

Interesting -- I wasn't familiar with explicit and default construction. This sounds right and I've changed it to emit explicit also for a non-implicit default constructor. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants