a couple of useful files

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4182 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-05-21 23:58:52 +00:00
parent 5296e9e995
commit 07c8c3367f
2 changed files with 71 additions and 0 deletions

39
development/TodoPlan-1.3 Normal file
View File

@ -0,0 +1,39 @@
Andre:
global
- context sensitive keybindings
- better .tex -> .lyx coversion
- the "cursor stuff"
- unify "real" insets and mathed's insets
- David's preview stuff
mathed only
- fill in gaps in AMS support
- further work on math-extern
- reduce memory consumption
John Levon:
o GUII
o bug fixes
Martin:
- User-definable floats (Herbert)
- Optional arguments (short title versions)
- Spreadsheet functionality (basic) in tabular
- Something else I don't remember :-)
Michael:
- upgrade of libsigc version to 1.4/1.3 whatever the release version
ends up getting called.
- GUII
- Gtkmm2 frontend.
Lgb:
- upgrade boost
- upgrade gettext
- textclass as string
- force arg check on lyxfuns
- move towards no-next code in paragraph,cursor and row.
- remove 1.2.x compability code.

View File

@ -0,0 +1,32 @@
crc.hpp:
@@ -280,15 +280,10 @@
typedef typename base_type::least least;
typedef typename base_type::fast fast;
-#ifdef __DECCXX
- static const least high_bit = 1ul << (Bits - 1u);
- static const fast high_bit_fast = 1ul << (Bits - 1u);
-#else
BOOST_STATIC_CONSTANT( least, high_bit = (least( 1u ) << ( Bits
- 1u )) );
BOOST_STATIC_CONSTANT( fast, high_bit_fast = (fast( 1u ) << ( Bits
- 1u )) );
-#endif
};
@@ -345,11 +340,7 @@
BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast )
;
#endif
-#ifdef __DECCXX
- static const least sig_bits = (~( ~(0ul) << Bits));
-#else
BOOST_STATIC_CONSTANT( least, sig_bits = (~( ~(least( 0u )) << Bits ))
);
-#endif
BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );