1
I Use This!
Inactive

Commits : Listings

Analyzed about 8 hours ago. based on code collected about 23 hours ago.
Aug 22, 2025 — Aug 22, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Add a `#ifdef` to silence a `clang` static analyzer false positive warning. More... about 14 years ago
Silences some warnings that newer versions of the compiler(s) complain about. More... about 14 years ago
Minor changes to hashing and cache aging algorithms. More... over 14 years ago
Merge branch 'master' of github.com:johnezang/JSONKit More... over 14 years ago
Updated README.md with benchmark information for NSJSONSerialization. More... over 14 years ago
Merge pull request #58 from samsoffes/master More... almost 15 years ago
Changed cast to NSDictionary per John's request More... almost 15 years ago
Surpress "multiple methods named" error I realize that `collection` won't always be an NSArray, but the cast will let the compiler know to expect a NSUInteger return type instead of `size_t` which is also a return type a method named `count` inside of JSONKit. More... almost 15 years ago
Fixes issues #9, #15, #40, aka "crashes on 64-bit Lion / 10.7 ABI". More... almost 15 years ago
Merge pull request #46 from jparise/cache-collisions More... almost 15 years ago
Merge pull request #50 from atnan/fixclang2errors More... almost 15 years ago
Fix ambiguous method (initWithObjects:count:) compilation errors under Clang 3.0. More... almost 15 years ago
Use memcmp() instead of strncmp() to compare cache buckets. More... almost 15 years ago
Added note about Automatic Reference Counting (ARC) to README.md and some preprocessor-foo to JSONKit.m to check if JSONKit is being compiled with ARC / `-fobjc-arc` and #error if it is. More... about 15 years ago
Minor tweak to the minor tweak. More... about 15 years ago
Minor tweak. More... about 15 years ago
Added "JKSerializeOptionEscapeForwardSlashes". Changed a number of <table> constructions to the easier Markdown extra tables to see if the new github markdown processor accepts them. Also changed some <pre> items to ```objective-c / ``` fenced code style. More... about 15 years ago
Fixes issue gh-29, license descrepency between README.md and JSONKit.[hm]. More... about 15 years ago
Fix typo. More... over 15 years ago
Moved the +load logic from JSONDecoder in to jk_collectionClassLoadTimeInitialization(). Missed the JSONDecoder +load stuff on the last commit. Related to issue #23. More... over 15 years ago
Added cocoanetics JSON comparison. More... over 15 years ago
Workarounds for issue #19 (the clang stuff) and issue #23. For issue #23, the code in the collection classes `+load` was removed and placed in a function with the `__attribute__ ((constructor))` attribute. This is to work around an apparent bug when building JSONKit as a static library for iOS targets. @ohhorob also opened a bug with apple- # 9461567. More... over 15 years ago
Merge pull request #22 from jordanbreeding/master More... over 15 years ago
Pacify Xcode 4.1. More... over 15 years ago
Adds a serializing option to backslash escape forward slashes. This is for issue #21. More... over 15 years ago
Change a NSException from exceptionWithName: to raise:. Closes #20. More... over 15 years ago
Fixes a bug when removing items from a JKDictionary. Since JKDictionary is implemented using a hash table that uses linear probing, the removal function needs to "re-add" items that follow the removed item so that linear probe hash collisions are not "lost". Closes #17 More... over 15 years ago
When commiting the fix for hash % dictionary->capacity, some local, in progress edits made it in to the commit. This change backs them out. More... over 15 years ago
Fixes a bug when trying to retrieve a key from a dictionary that contains no items (div by zero: (keyHash % dictionary->capacity)) More... over 15 years ago
Removed a comment line that got duplicated somehow when updating the license information. More... over 15 years ago