[libc-commits] [PATCH] D147180: [libc] Add LIBC_INLINE macro to RPC implementation

Siva Chandra via Phabricator via libc-commits libc-commits at lists.llvm.org
Wed Mar 29 15:02:54 PDT 2023


sivachandra accepted this revision.
sivachandra added inline comments.
This revision is now accepted and ready to land.


================
Comment at: libc/src/__support/RPC/rpc.h:79
+
   template <typename W, typename C> bool handle(W work, C clean);
 };
----------------
lntue wrote:
> @sivachandra: Do these templates need to be annotated too?
Yes, this should be:

```
template <typename W, typename C>
LIBC_INLINE bool handle(W, C);
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D147180/new/

https://reviews.llvm.org/D147180



More information about the libc-commits mailing list