Open
Conversation
Co-authored-by: SergiusTheBest <4660722+SergiusTheBest@users.noreply.github.com>
Co-authored-by: SergiusTheBest <4660722+SergiusTheBest@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Remove using namespace std inside kf namespace
Remove using namespace std from kf namespace
Nov 6, 2025
Member
|
…e_t/ptrdiff_t Co-authored-by: SergiusTheBest <4660722+SergiusTheBest@users.noreply.github.com>
Contributor
Author
Done in e121bda. Changed to |
Member
|
@copilot Fix build errors. |
Co-authored-by: SergiusTheBest <4660722+SergiusTheBest@users.noreply.github.com>
Contributor
Author
Member
|
@copilot Fix build errors. |
…invalid_argument with ASSERT Co-authored-by: SergiusTheBest <4660722+SergiusTheBest@users.noreply.github.com>
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
using namespace std;from include/kf/Hex.h and addstd::prefix tospanandarraytypesusing namespace std;from include/kf/EncodingDetector.husing namespace std;from include/kf/USimpleString.h and addstd::prefix tospanusing namespace std;from include/kf/TextDetector.h and addstd::prefix tospanandrangesusing namespace std;from include/kf/Base64.h (no changes needed, all uses already have std::)using namespace std;from include/kf/ArrayUtils.h (no changes needed, all uses already have std::)using namespace std;from include/kf/EarlyAllocator.h and addstd::prefix to type traitsusing namespace std;from include/kf/ASimpleString.h and addstd::prefix tospanusing namespace std;from include/kf/Scanner.husing namespace std;from include/kf/ext/timsort.h and addstd::prefix tomin,max, andswap(std::min)and(std::max)instead ofstd::minandstd::maxto be safe if they are macrosstd::prefix fromsize_tandptrdiff_tfor brevitystd::prefix tospanin all function signatures_Xinvalid_argumentwithASSERTin EarlyAllocator.h (internal STL function no longer accessible)Summary
Successfully removed all instances of
using namespace stdfrom within thekfnamespace across 10 header files. Added explicitstd::prefixes to standard library types and functions where needed, using macro-safe syntax forminandmax. Fixed all build errors by:spanreferences in function signatures have thestd::prefix_Xinvalid_argumentcalls withASSERTin noexcept functionsThe changes eliminate namespace pollution and follow C++ best practices while maintaining brevity for common types like
size_tandptrdiff_t.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.