Skip to content

Commit

Permalink
[ORC][RPC] Use more meaningful template parameter names.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@290015 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
lhames committed Dec 17, 2016
1 parent 5a5039a commit 67f0925
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/llvm/ExecutionEngine/Orc/RPCSerialization.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ std::string RPCTypeName<std::vector<T>>::Name;
/// }
///
/// @endcode
template <typename ChannelT, typename WireType, typename From = WireType,
typename = void>
class SerializationTraits {};
template <typename ChannelT, typename WireType,
typename ConcreteType = WireType, typename = void>
class SerializationTraits;

template <typename ChannelT>
class SequenceTraits {
Expand Down

0 comments on commit 67f0925

Please sign in to comment.