Revision: 76433
          http://sourceforge.net/p/brlcad/code/76433
Author:   starseeker
Date:     2020-07-22 21:39:18 +0000 (Wed, 22 Jul 2020)
Log Message:
-----------
returning int, not void

Modified Paths:
--------------
    brlcad/trunk/src/libgcv/plugins/asc/asc.cpp

Modified: brlcad/trunk/src/libgcv/plugins/asc/asc.cpp
===================================================================
--- brlcad/trunk/src/libgcv/plugins/asc/asc.cpp 2020-07-22 21:25:56 UTC (rev 
76432)
+++ brlcad/trunk/src/libgcv/plugins/asc/asc.cpp 2020-07-22 21:39:18 UTC (rev 
76433)
@@ -36,10 +36,10 @@
 #include "gcv/api.h"
 #include "gcv/util.h"
 
-extern void asc_read_v4(struct gcv_context *c, const struct gcv_opts *o, 
std::ifstream &fs);
-extern void asc_read_v5(struct gcv_context *c, const struct gcv_opts *o, 
std::ifstream &fs);
-extern void asc_write_v4(struct gcv_context *c, const struct gcv_opts *o, 
const char *dest_path);
-extern void asc_write_v5(struct gcv_context *c, const struct gcv_opts *o, 
const char *dest_path);
+extern int asc_read_v4(struct gcv_context *c, const struct gcv_opts *o, 
std::ifstream &fs);
+extern int asc_read_v5(struct gcv_context *c, const struct gcv_opts *o, 
std::ifstream &fs);
+extern int asc_write_v4(struct gcv_context *c, const struct gcv_opts *o, const 
char *dest_path);
+extern int asc_write_v5(struct gcv_context *c, const struct gcv_opts *o, const 
char *dest_path);
 
 static int
 asc_can_read(const char *data)

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to