Skip to content
Snippets Groups Projects
  1. Dec 21, 2017
    • Mark OLESEN's avatar
      TUT: update run/clean scripts · 57b9896a
      Mark OLESEN authored
      57b9896a
    • Mark OLESEN's avatar
      COMP: resolve label-size=64 ambiguities for clang · 89e12df4
      Mark OLESEN authored
      * DynList construction with integer parameter:
      
          DynList<T>(int32_t) - eg DynList<T> lst(10)
      
        Candidates are
      
           DynList(const label)
           template<class ListType> DynList(const ListType& lst)
      
        It picks the second as the beter match (error).
      
        Resolve by adding DynList(int32_t) constructor for label-size=64
      
      * Similar problem with copy assignment.
           dyList = -1 (for example) picks
           template<class ListType> operator=(const ListType& lst)
      
        Resolve by replacing general list assignment with assignments for
        DynList, UList, FixedList
      89e12df4
  2. Dec 18, 2017
  3. Dec 13, 2017
  4. Nov 22, 2017
  5. Nov 04, 2017
  6. Oct 27, 2017
  7. Sep 25, 2017
  8. Sep 20, 2017
  9. Sep 14, 2017
  10. Aug 14, 2017
  11. Jul 31, 2017
  12. Jul 30, 2017
  13. Jul 29, 2017
  14. May 26, 2017
  15. May 25, 2017
  16. Apr 16, 2017