two line change to remove iostreams from this test list. r=alecf,jag sr=scc

This commit is contained in:
blizzard%redhat.com 2000-11-17 21:17:53 +00:00
Родитель deff2e336c
Коммит 2dabba2cb5
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -19,9 +19,10 @@
*
* Contributor(s):
* Suresh Duddi <dp@netscape.com>
* Christopher Blizzard <blizzard@mozilla.org>
*/
#include <iostream.h>
#include <stdio.h>
#include "TestFactory.h"
#include "nsIGenericFactory.h"
@ -41,7 +42,7 @@ class TestDynamicClassImpl: public ITestClass {
NS_IMPL_ISUPPORTS1(TestDynamicClassImpl, ITestClass);
void TestDynamicClassImpl::Test() {
cout << "hello, dynamic world!\n";
printf("hello, dynamic world!\n");
}
/**