Jiawen (Kevin) Chen
Results
31
issues of
Jiawen (Kevin) Chen
Abseil has "portable" (ifdefed around clang) attributes for annotating: * [ABSL_ATTRIBUTE_VIEW](https://github.com/abseil/abseil-cpp/blob/f7c22f52a748761b93c50a27b06afef000b26f95/absl/base/attributes.h#L857) that something is a view (e.g., `array_ref`) * [ABSL_ATTRIBUTE_OWNER](https://github.com/abseil/abseil-cpp/blob/f7c22f52a748761b93c50a27b06afef000b26f95/absl/base/attributes.h#L888) that something is owns all the data (e.g., `array`) *...