... Not yet. I also noticed recently (after a discussion with Franck I think) that these options were missing in the corresponding geant task. I'll try to...
The MS linker link.exe needs some environment variables set to work properly. MS provides a batch file called vcvars32.bat to accomplish this. I can get geant...
... I guess that this is because vcvars32.bat is executed in its own shell. This shell is exited at the end of the execution of vcvars32.bat. ... From geant I...
... In some OSes (e.g., Windows 2000) it can be done by <exec executable="vcvars32 && geant target_that_calls_linker" if="${GOBO_CC}=msc"/> Alexander Kogtenkov...
... On others (e.e. Linux) it can be archived by issuing <exec executable="source vcvars32; geant target_that_calls_linker" if="${GOBO_CC}=msc"/> Now, of...
Guys, I want to inherit from a class that I am testing so that I may have access to some of the internals. However the class that I am inheriting has a...
... First, I don't think that it is a good idea to test a class by inheriting from it. But if you want to do that, then let see the next problem. The solution ...
... I just took your advice and changed the test to a client-supplier relationship. Perhaps this isn't as useful as I thought it would be. Thanks! Brian...
... I have added the following routine to TS_TEST_CASE and it will be committed to CVS in the coming days: feature -- Initialization initialize is --...
... Hash: SHA1 ... I like these best. - -- Live long and prosper, Berend de Boer (PGP public key: http://www.pobox.com/~berend/berend-public-key.txt) ... ...
... Another alternative could be: no_generation (default: false) no_compilation (default: false) no execution (default: false) or: generation (default: true) ...
... Negatives are hard to read. ... At least this avoids clashes with the existing format. The possible alternatives could also be: 1. Add an attribute...
... Personally I don't like multiple value attributes. ... Yes. You can generate once and for all and then compile several times with different compilation ...
... The semantic value should be in `last_<class_name>_value'. For example: STRING -> last_string_value FOO -> last_foo_value You said that TOKEN is generic....
Hi Today I've installed gobo-3.3 with smarteiffel-1.1 on a solaris server. To do so : - I expanded the archive - I built one by one each executable in every...
LEMAITRE Guillaume
guillaume.lemaitre33@...
Feb 4, 2004 6:07 pm
1067
... The access mode on the file does not matter when it comes to deleting it, it's the access mode of the containing directory that matters (because deleting a...
... The bootstrap process is only useful when getting the source code from CVS. If you installed from the package gobo33.tar.gz then you don't need to run the...
... ok, thanks for the information ... ok :) I thought I read it. It seems my english is not as good as I thought :) BTW, thank you eric for the support...
LEMAITRE Guillaume
guillaume.lemaitre33@...
Feb 5, 2004 3:17 am
1070
Dear gobo, The way DS_HASH_TABLE functions is confusing to me. If I call `put' and the key is equal (or =, depending on the key equality tester) the item will...
... Objects of type MY_OBJ are not hashed! See the type: class DS_HASH_TABLE [G, K -> HASHABLE] It is K that is hashable. A table is a dictionary that for each...
... I should have been more precise. I should have said "If I try to enter two objects of type MY_OBJ that map to the same key..." Let's start with the basic...
... This is _not_ what DS_HASH_TABLE is about! DS_HASH_TABLE is a simple dictionary that gives you an item associated with a key, which is hashable for quick...
In addition to Franck's answer, I'd like to add this: ... No, this is not the answer. If you want a set, you should use a descendant of DS_SET, not of...
... If it were possible to insert two differents objects with equal keys, what would `item' return? As Franck already pointed out, if you really want to insert...