SolidWallOfCode commented on code in PR #9443: URL: https://github.com/apache/trafficserver/pull/9443#discussion_r1142351998
########## iocore/cache/P_CacheArray.h: ########## @@ -76,27 +74,25 @@ template <class T> TS_INLINE CacheArray<T>::~CacheArray() } } -template <class T> TS_INLINE CacheArray<T>::operator const T *() const +template <class T> inline CacheArray<T>::operator const T *() const Review Comment: Never `inline` a template function - it's automatic. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
