Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #ifndef __ST2_HIGHLIGHT_TEST__
  2. #define __ST2_HIGHLIGHT_TEST__
  3.  
  4. // This define makes the highlighting fail
  5. #define create_obj( name, val ) obj<decltype(val)> name(val)
  6.  
  7. template <typename T>
  8. struct obj
  9. {
  10. obj( const T& val ): var(val) {}
  11. T var;
  12. };
  13.  
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement