]> matita.cs.unibo.it Git - helm.git/commitdiff
- gcc 3.2 aware changes
authorStefano Zacchiroli <zack@upsilon.cc>
Wed, 2 Apr 2003 09:16:04 +0000 (09:16 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Wed, 2 Apr 2003 09:16:04 +0000 (09:16 +0000)
- made "textomml" autotools aware

helm/DEVEL/mathml_editor/textomml/Makefile.am
helm/DEVEL/mathml_editor/textomml/main.cc

index d547d937f56973b6806b59677ec70210c070ed3b..cd66658f545b10552264c9ceec3013112b44e04c 100644 (file)
@@ -1,5 +1,5 @@
 
-bin_PROGRAMS = textomml
+noinst_PROGRAMS = textomml
 
 textomml_SOURCES = main.cc
 
index 19a9621895a22d52a893d1b593d2dcd9232557ae..473576fde7c2cc2f0a479a54acd509de57917767 100644 (file)
@@ -98,7 +98,7 @@ parseError(const char* option)
   printHelp();
 }
 
-void
+int
 main(int argc, char* argv[])
 {
   CLoggerConsole logger;
@@ -175,7 +175,7 @@ main(int argc, char* argv[])
 
   if (optind < argc)
     {
-      ifstream file(argv[optind]);
+      std::ifstream file(argv[optind]);
       if (!file)
        {
          std::cerr << "can't open input file `" << argv[optind] << "'" << std::endl;