Skip to content
This repository has been archived by the owner on May 31, 2020. It is now read-only.

Commit

Permalink
Document make_value.
Browse files Browse the repository at this point in the history
  • Loading branch information
nilium committed Nov 30, 2014
1 parent f3e5859 commit 030054d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions vm_value.h
Expand Up @@ -394,6 +394,12 @@ std::ostream &operator << (std::ostream &out, vm_value v);



/**
* Convenience function to construct a vm_value from an arithmetic type.
*
* This function may be overloaded as needed to provide vm_value objects for
* various other types.
*/
template <
typename T,
typename Decayed = typename std::decay<T>::type,
Expand Down

0 comments on commit 030054d

Please sign in to comment.