Skip to content
Snippets Groups Projects
Select Git revision
  • cd6566e2bf76bd83b5ee1b8d423faadab02f6140
  • dev default protected
  • 316-tracking-estimator
  • Thesis_hannes_merge_ready_versuch1
  • InboxWithNewOverview
  • 298-missing-backend-features-connections-for-ui
  • 293-integrate-attachment-functionality-in-new-composeview
  • 299-add-pull-to-refresh-to-maillistview
  • 290+Dev
  • 290-redesign-the-ContactView
  • 291-add-research-face-prototype
  • 292-add-comments-to-attachmentviewmain-swift
  • 302-fix-bug-attachment-previews-of-incoming-mails
  • 288-make-folders-list-slide-in-from-the-left-instead-of-from-the-right
  • 295-inboxview-maillistview-improvements
  • 294-fix-bugs-in-new-composeview
  • 287-redesign-composeview
  • updatePGP
  • 282-Implement-missing-functions-in-reply-button
  • 286-update-openssl
  • ThesisHannesV2_
  • runnable
  • optional_UI_change
  • dep
  • NoTestCase
25 results

GamificationStatusViewController.swift

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    enum_scheme.cc 401 B
    #include <dune/common/exceptions.hh>
    
    template <> struct StringToEnum<Config::scheme> {
      static Config::scheme convert(std::string const &s) {
        if (s == "implicitTwoStep")
          return Config::ImplicitTwoStep;
    
        if (s == "implicitEuler")
          return Config::ImplicitEuler;
    
        if (s == "newmark")
          return Config::Newmark;
    
        DUNE_THROW(Dune::Exception, "failed to parse enum");
      }
    };