From 4e61e0bb769a4f730f6aa77527983c9818c146b6 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Mon, 23 Jan 2012 21:59:34 +0000 Subject: [PATCH] [D] Fixed possible output ordering issue in test case. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12901 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/d/variables/d2/runme.d | 1 + 1 file changed, 1 insertion(+) diff --git a/Examples/d/variables/d2/runme.d b/Examples/d/variables/d2/runme.d index f80b81819..6e18d2d64 100644 --- a/Examples/d/variables/d2/runme.d +++ b/Examples/d/variables/d2/runme.d @@ -66,6 +66,7 @@ void main() { example.pt = example.ptptr; write( "The new value is " ); + stdout.flush(); example.pt_print(); writefln( "You should see the value %s", example.Point_print(example.ptptr) ); }