Skip to content

Instantly share code, notes, and snippets.

@ftalbrecht
Created September 5, 2014 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ftalbrecht/5715766fd303a8809b0a to your computer and use it in GitHub Desktop.
Save ftalbrecht/5715766fd303a8809b0a to your computer and use it in GitHub Desktop.
indentation
```c++
template< class R, int rT, int rCT, int rA, int rCA >
static size_t order(const LocalfunctionTupleType& localFunctionsEntity,
const LocalfunctionTupleType& localFunctionsNeighbor,
const Stuff::LocalfunctionSetInterface< EntityType, DomainFieldType, dimDomain
, R, rT, rCT >& testBaseEntity,
const Stuff::LocalfunctionSetInterface< EntityType, DomainFieldType, dimDomain
, R, rA, rCA >& ansatzBaseEntity,
const Stuff::LocalfunctionSetInterface< EntityType, DomainFieldType, dimDomain
, R, rT, rCT >& testBaseNeighbor,
const Stuff::LocalfunctionSetInterface< EntityType, DomainFieldType, dimDomain
, R, rA, rCA >& ansatzBaseNeighbor)
```
@ftalbrecht
Copy link
Author

Is now:

  template< class R, int rT, int rCT, int rA, int rCA >
  static size_t order(const LocalfunctionTupleType& localFunctionsEntity,
                      const LocalfunctionTupleType& localFunctionsNeighbor,
                      const Stuff::LocalfunctionSetInterface< EntityType, DomainFieldType, dimDomain
                                                              , R, rT, rCT >& testBaseEntity,
                      const Stuff::LocalfunctionSetInterface< EntityType, DomainFieldType, dimDomain
                                                              , R, rA, rCA >& ansatzBaseEntity,
                      const Stuff::LocalfunctionSetInterface< EntityType, DomainFieldType, dimDomain
                                                              , R, rT, rCT >& testBaseNeighbor,
                      const Stuff::LocalfunctionSetInterface< EntityType, DomainFieldType, dimDomain
                                                              , R, rA, rCA >& ansatzBaseNeighbor)
  {
    ...
  }

@ftalbrecht
Copy link
Author

Should be:

template< class R, int rT, int rCT, int rA, int rCA >
static size_t order(const LocalfunctionTupleType& localFunctionsEntity,
                    const LocalfunctionTupleType& localFunctionsNeighbor,
                    const Stuff::LocalfunctionSetInterface
                        < EntityType, DomainFieldType, dimDomain , R, rT, rCT >& testBaseEntity,
                    const Stuff::LocalfunctionSetInterface
                        < EntityType, DomainFieldType, dimDomain , R, rA, rCA >& ansatzBaseEntity,
                    const Stuff::LocalfunctionSetInterface
                        < EntityType, DomainFieldType, dimDomain , R, rT, rCT >& testBaseNeighbor,
                    const Stuff::LocalfunctionSetInterface
                        < EntityType, DomainFieldType, dimDomain , R, rA, rCA >& ansatzBaseNeighbor)
{
  ...
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment