[libcxx-commits] [PATCH] D91292: [libc++] [P0935] [C++20] Eradicating unnecessarily explicit default constructors from the standard library.
    Marek Kurdej via Phabricator via libcxx-commits 
    libcxx-commits at lists.llvm.org
       
    Wed Nov 11 12:27:09 PST 2020
    
    
  
curdeius added inline comments.
================
Comment at: libcxx/include/random:101-102
     // constructors and seeding functions
-    explicit mersenne_twister_engine(result_type value = default_seed);
+    mersenne_twister_engine();
+    explicit mersenne_twister_engine(result_type value);
     template<class Sseq> explicit mersenne_twister_engine(Sseq& q);
----------------
Please disregard modifications to stuff other than `linear_congruential_engine`.
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D91292/new/
https://reviews.llvm.org/D91292
    
    
More information about the libcxx-commits
mailing list