Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!seismo!rutgers!rochester!cornell!uw-beaver!uw-june!brian From: brian@uw-june.UUCP (Brian Bershad) Newsgroups: comp.lang.c++ Subject: ordering of static constructors... Message-ID: <2973@uw-june.UUCP> Date: Tue, 11-Aug-87 00:05:37 EDT Article-I.D.: uw-june.2973 Posted: Tue Aug 11 00:05:37 1987 Date-Received: Wed, 12-Aug-87 02:28:12 EDT Reply-To: brian@uw-june.UUCP (Brian Bershad) Distribution: world Organization: U of Washington, Computer Science, Seattle Lines: 15 What's the best way (is there a way) to specify the order in which one's static constructors are called? I am trying to use ostream from within a constructor X, but the need for an ostream constructor is getting picked up by munch after the need for my static constructor X is found. The result: segmentation violation in X. This is version 1.2, and it passes the static test cases that come with the distribution. Thanks,