diff options
Diffstat (limited to 'src/repeat.rs')
-rw-r--r-- | src/repeat.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/repeat.rs b/src/repeat.rs index fe7523c..668fefb 100644 --- a/src/repeat.rs +++ b/src/repeat.rs @@ -10,7 +10,7 @@ use crate::{ OPENGL_CMD_ARGS_REPLACE, OPENGL_CMD_ARG_NAMES_REPLACE, OPENGL_CMD_ARG_TYPES_REPLACE, - OPENGL_CMD_IDENT_REPLACE, + OPENGL_CMD_NAME_REPLACE, OPENGL_CMD_RET_TYPE_REPLACE, }; @@ -24,7 +24,7 @@ pub fn for_each_opengl_command_impl( .iter() .map(|gl_command| { let stream = input_stream.replace_ident( - &Ident::new(OPENGL_CMD_IDENT_REPLACE, Span::call_site()), + &Ident::new(OPENGL_CMD_NAME_REPLACE, Span::call_site()), &TokenTree::Ident(Ident::new( gl_command.prototype().name(), Span::call_site(), @@ -154,8 +154,8 @@ mod tests for_each_opengl_command_impl( "e! { unsafe { - functions::#ht gl_command = FunctionPtr::new_initialized( - get_proc_addr(stringify!(#ht gl_command)) + functions::#ht gl_command_name = FunctionPtr::new_initialized( + get_proc_addr(stringify!(#ht gl_command_name)) ); } }, @@ -185,7 +185,7 @@ mod tests assert_eq!( for_each_opengl_command_impl( "e! { - fn #ht gl_command(#ht gl_command_args) -> #ht gl_command_ret_type {} + fn #ht gl_command_name(#ht gl_command_args) -> #ht gl_command_ret_type {} }, ®istry, ) |