Skip to content

Commit b904a1e

Browse files
Update README.md
1 parent f0ce83b commit b904a1e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Single header Library utilities:
44

55
+ [ptr_to_unique](https://github.com/make-cpp-nice/ptr_to_unique) - A smart pointer to an object already owned by a unique_ptr. It doesn't own the object but it self zeroes when the object is deleted so that it can never dangle.
66
+ [numerical conversions](https://github.com/make-cpp-nice/numerical-conversions) - A set of dedicated numerical conversions that are a better choice than the canonical application of static_cast.
7-
+ [literal integral constants](https://github.com/make-cpp-nice/literal-integral-constants) - Converts literal constants into std::integral_constant using a double underscore suffix, e.g. 4__
7+
+ [literal integral constants](https://github.com/make-cpp-nice/literal-integral-constants) - Converts literal
8+
constants into std::integral_constant using a double underscore suffix, e.g. 4__
89

910
Some thoughts:
1011

@@ -16,7 +17,7 @@ Some thoughts:
1617
+ Some clever and useful C++ constructs are difficult to decipher. Use them if they serve your purpose but encapsulate it so others don't have to go there.
1718
+ Always prefer existing standard solutions but if they don't meet your needs then find or create something that does.
1819

19-
20+
Please post any feedback or comments on [Comment and discussion](https://github.com/make-cpp-nice/make_cpp_nice/discussions)
2021

2122

2223
<!---

0 commit comments

Comments
 (0)