index
:
kakoune.git
master
Unnamed repository; edit this file 'description' to name the repository.
Mike Vink
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
shared_string.hh
Age
Commit message (
Expand
)
Author
2024-02-28
Fix missing destructor call and simplify code slightly
Maxime Coste
2024-02-28
Templatize StringData::create
Maxime Coste
2023-11-17
Improve WordDB performance by precomputing hashes
Maxime Coste
2021-10-23
src: Fix undefined behaviour
Frank LENORMAND
2017-03-07
Replace uses of UnorderedMap with HashMap
Maxime Coste
2017-02-23
Refactor StringData and StringRegistry to remove need for purging
Maxime Coste
2017-01-30
Make SharedString::create take a list of StringViews
Maxime Coste
2017-01-28
Remove hash from StringData
Maxime Coste
2017-01-08
Apply clang-tidy modernize to the codebase
Maxime Coste
2016-12-03
Refactor RefPtr handling to use a policy class
Maxime Coste
2016-02-05
Get rid of SharedString
Maxime Coste
2016-02-05
dont intern SharedStrings but StringDataPtr
Maxime Coste
2015-11-06
Remove unused _ss UDL
Maxime Coste
2015-05-14
Keep hash stored in StringData
Maxime Coste
2015-05-02
Formatting fix
Maxime Coste
2015-04-16
Use an UnorderedSet for string registry
Maxime Coste
2015-03-12
Remove unused StaticString
Maxime Coste
2015-03-02
Tweak StringData::create implementation
Maxime Coste
2015-03-01
Use StringDataPtr alias for RefPtr<StringData>
Maxime Coste
2015-03-01
rename StringStorage to StringData
Maxime Coste
2015-02-28
Add StaticStringStorage for storing string literals
Maxime Coste
2015-02-23
Use RefPtr as SafePtr backend
Maxime Coste
2015-02-19
Rename safe_ptr and ref_ptr to SafePtr and RefPtr
Maxime Coste
2015-02-10
Replace some <cstring> function usage with c++ algorithms
Maxime Coste
2015-01-26
Always inline StringStorage methods
Maxime Coste
2015-01-25
Tweak SharedString
Maxime Coste
2015-01-24
Fix GCC 4.8 compilation
Maxime Coste
2015-01-22
Avoid temporary strings on buffer load/reload
Maxime Coste
2015-01-19
rename SharedString::Storage to StringStorage and use directly in Buffer
Maxime Coste
2015-01-19
Use a single allocation for SharedString::Storage
Maxime Coste
2015-01-18
Add helper for overloading operator new/delete
Maxime Coste
2015-01-18
Replace std::shared_ptr with homemade, intrusive, ref_ptr
Maxime Coste
2015-01-15
Add a no copy shared string constructor, used for map lookup, and intern words
Maxime Coste
2015-01-15
Replace InternedStrings with SharedString, shared_ptr based
Maxime Coste