# DDA's style (viz. astyle)

**URL:** https://discourse.cataclysmdda.org/t/ddas-style-viz-astyle/8517
**Category:** The Toolbox
**Created:** [January 5, 2015, 2:14am UTC](https://discourse.cataclysmdda.org/t/ddas-style-viz-astyle/8517 "2015-01-05T02:14:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Brandon\_K](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/brandon_k/32/1174_2.png) [@Brandon\_K](https://discourse.cataclysmdda.org/u/Brandon_K)
#### Post date: [January 5, 2015, 2:14am UTC](https://discourse.cataclysmdda.org/t/ddas-style-viz-astyle/8517/1 "2015-01-05T02:14:56Z")

</div>

Can I ask why the decision was made to apply --indent-classes?

With longer signatures (nevermind const or noexcept) the first of the below pushes things pretty far into the right margin.

```auto
class foo
{
    public:
        void bar();
};

class foo
{
public:
    void bar();
};

class foo {
public:
    void bar();
};
```

Thanks.
