1
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Dec 03, 2024 — Dec 03, 2025
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... over 13 years ago
Silences some warnings that newer versions of the compiler(s) complain about. More... over 13 years ago
Minor changes to hashing and cache aging algorithms. More... over 13 years ago
Merge branch 'master' of github.com:johnezang/JSONKit More... almost 14 years ago
Updated README.md with benchmark information for NSJSONSerialization. More... almost 14 years ago
Merge pull request #58 from samsoffes/master More... about 14 years ago
Changed cast to NSDictionary per John's request More... about 14 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... about 14 years ago
Fixes issues #9, #15, #40, aka "crashes on 64-bit Lion / 10.7 ABI". More... about 14 years ago
Merge pull request #46 from jparise/cache-collisions More... about 14 years ago
Merge pull request #50 from atnan/fixclang2errors More... about 14 years ago
Fix ambiguous method (initWithObjects:count:) compilation errors under Clang 3.0. More... about 14 years ago
Use memcmp() instead of strncmp() to compare cache buckets. More... over 14 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... over 14 years ago
Minor tweak to the minor tweak. More... over 14 years ago
Minor tweak. More... over 14 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... over 14 years ago
Fixes issue gh-29, license descrepency between README.md and JSONKit.[hm]. More... over 14 years ago
Fix typo. More... over 14 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 14 years ago
Added cocoanetics JSON comparison. More... over 14 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 14 years ago
Merge pull request #22 from jordanbreeding/master More... over 14 years ago
Pacify Xcode 4.1. More... over 14 years ago
Adds a serializing option to backslash escape forward slashes. This is for issue #21. More... over 14 years ago
Change a NSException from exceptionWithName: to raise:. Closes #20. More... over 14 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 14 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 14 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 14 years ago
Removed a comment line that got duplicated somehow when updating the license information. More... over 14 years ago