Ignore:
Timestamp:
03/01/15 01:19:56 (9 years ago)
Author:
Maciej Komosinski
Message:
  • use source/code mapping for line number and file information in vm error messages
  • enum ExtValue::CompareResult? instead of int
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/param/param.h

    r319 r333  
    3232#define PARAM_NOISOLATION 4096  //< don't use proxy object in master/slave interactions
    3333#define PARAM_DEPRECATED  8192  //< this member is deprecated
     34#define PARAM_LINECOMMENT 16384 //< Param::load() adds "@line ..." comment when loading multiline (internal use)
    3435
    3536typedef int32_t paInt;
     
    160161        int save(VirtFILE*, const char* altname = NULL, bool force = 0);
    161162        int saveprop(VirtFILE*, int i, const char* p, bool force = 0);
    162         int load(VirtFILE*,bool warn_unknown_fields=true,bool *abortable=NULL);///< @return the number of fields loaded
     163        int load(VirtFILE*, bool warn_unknown_fields = true, bool *abortable = NULL, int *linenum = NULL);///< @return the number of fields loaded
    163164        int load2(const SString &, int &);///< @return the number of fields loaded
    164165
Note: See TracChangeset for help on using the changeset viewer.