Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Compilation fix for the RELEASE build configuration. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
024679a92b1e91b7e30478e577c14b2a |
User & Date: | mistachkin 2016-03-23 23:40:45.911 |
Context
2016-03-24
| ||
01:30 | Make the test for ticket [393d954be0] portable to Mono. check-in: 0ba5e9043b user: mistachkin tags: trunk | |
00:27 | Merge updates from trunk. check-in: bb297a629d user: mistachkin tags: core312 | |
2016-03-23
| ||
23:40 | Compilation fix for the RELEASE build configuration. check-in: 024679a92b user: mistachkin tags: trunk | |
23:35 | Move some things out of the UnsafeNativeMethods class. There are several reasons: 1) easier to maintain. 2) avoiding static call graph issues with CriticalHandle. 3) better separation of cross-platform and platform-specific code. check-in: d3e312825a user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
︙ | |||
80 81 82 83 84 85 86 87 88 89 90 91 92 93 | 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | + | #endif #endregion #endregion ///////////////////////////////////////////////////////////////////////// #region Public Methods #if DEBUG /// <summary> /// Creates the dictionary used to store the read counts for each of the /// runtime configuration settings. These numbers are used for debugging /// and testing purposes only. /// </summary> public static void InitializeSettingReadCounts() { |
︙ | |||
128 129 130 131 132 133 134 135 136 137 138 139 140 141 | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | + | if (settingReadCounts.TryGetValue(name, out count)) settingReadCounts[name] = count + 1; else settingReadCounts.Add(name, 1); } } } #endif #endregion } #endif #endregion ///////////////////////////////////////////////////////////////////////////// |
︙ |