This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[V3 PATCH] Fix for defect report libstdc++/1885


This patch allows users to create new instantiations of the
std:: basic_ios class. 

Look's like this might have been a temporary thing that just 
got left in.

2001-02-13  Greg Bumgardner <bumgard@roguewave.com>

	* libstdc++-v3/include/bits/basic_ios.h: Uncommented #include of
	bits/basic_ios.tcc 

Index: gcc/libstdc++-v3/include/bits/basic_ios.h
diff -c gcc/libstdc++-v3/include/bits/basic_ios.h:1.1.1.1 gcc/libstdc++-v3/include/bits/basic_ios.h:1.1.1.1.8.1
*** gcc/libstdc++-v3/include/bits/basic_ios.h:1.1.1.1	Tue Feb 13 00:19:34 2001
--- gcc/libstdc++-v3/include/bits/basic_ios.h	Tue Feb 13 10:17:52 2001
***************
*** 205,211 ****
  
  #ifdef _GLIBCPP_NO_TEMPLATE_EXPORT
  # define export
! //#include <bits/basic_ios.tcc>
  #endif
  
  #endif /* _CPP_BITS_BASICIOS_H */
--- 205,213 ----
  
  #ifdef _GLIBCPP_NO_TEMPLATE_EXPORT
  # define export
! #ifdef _GLIBCPP_FULLY_COMPLIANT_HEADERS
! #include <bits/basic_ios.tcc>
! #endif
  #endif
  
  #endif /* _CPP_BITS_BASICIOS_H */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]