this is a gcc file, you can download it and learn its usetility, for further detail please look at t

源代码在线查看: using2.c

软件大小: 1331 K
上传用户: pipinooad
关键词: usetility download further detail
下载地址: 免注册下载 普通下载 VIP

相关代码

				// Build don't link:				// 				// Copyright (C) 2001 Free Software Foundation, Inc.				// Contributed by Nathan Sidwell 22 May 2001 								// Bug 2184. Using decls in templates weren't doing the right thing.								namespace N {				  template 				  class vector {};				}								void g(const int&) {				  using N::vector;				  typedef vector V;				}								template 				void f(const J&) {				  using N::vector;				  typedef vector V;				}								int main() {				  f(0);				}							

相关资源