/ Replace all pointers by offsets or the opposite. */ /
| 1838 | /* Replace all pointers by offsets or the opposite. */ |
| 1839 | /***********************************************************************/ |
| 1840 | void SWAP::SwapJson(PJSON jsp, bool move) |
| 1841 | { |
| 1842 | if (move) |
| 1843 | MoffJson(jsp); |
| 1844 | else |
| 1845 | MptrJson((PJSON)MakeOff(Base, jsp)); |
| 1846 | |
| 1847 | return; |
| 1848 | } // end of SwapJson |
| 1849 | |
| 1850 | /***********************************************************************/ |
| 1851 | /* Replace all pointers by offsets. */ |
no test coverage detected