Take `nimCopyMem` as an example, do you mean to change its prototype to this 
(below) ?
    
    
    static N_INLINE(void, nimCopyMem)(void* const dest, void* const source, NI 
size)
    
    
    Run

I do care about `coust T *`, but not `T * const`. To me, below is far more 
better than the above one:
    
    
    static N_INLINE(void, nimCopyMem)(void* dest, const void* source, NI size)
    
    
    Run

Reply via email to