Skip to content

Commit 50431f2

Browse files
committed
fix whitespacing to be compliant with pre-commit
1 parent 1a4d83f commit 50431f2

31 files changed

+2036
-2036
lines changed

indra/llappearance/lltexlayer.cpp

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -438,25 +438,25 @@ const std::string LLTexLayerSet::getBodyRegionName() const
438438
// virtual
439439
void LLTexLayerSet::asLLSD(LLSD& sd) const
440440
{
441-
sd["visible"] = LLSD::Boolean(isVisible());
442-
LLSD layer_list_sd;
443-
layer_list_t::const_iterator layer_iter = mLayerList.begin();
444-
layer_list_t::const_iterator layer_end = mLayerList.end();
445-
for(; layer_iter != layer_end; ++layer_iter)
446-
{
447-
LLSD layer_sd;
448-
LLTexLayerInterface* layer = (*layer_iter);
449-
if (layer)
450-
{
451-
layer->asLLSD(layer_sd);
452-
}
453-
layer_list_sd.append(layer_sd);
454-
}
455-
LLSD mask_list_sd;
456-
LLSD info_sd;
457-
sd["layers"] = layer_list_sd;
458-
sd["masks"] = mask_list_sd;
459-
sd["info"] = info_sd;
441+
sd["visible"] = LLSD::Boolean(isVisible());
442+
LLSD layer_list_sd;
443+
layer_list_t::const_iterator layer_iter = mLayerList.begin();
444+
layer_list_t::const_iterator layer_end = mLayerList.end();
445+
for(; layer_iter != layer_end; ++layer_iter)
446+
{
447+
LLSD layer_sd;
448+
LLTexLayerInterface* layer = (*layer_iter);
449+
if (layer)
450+
{
451+
layer->asLLSD(layer_sd);
452+
}
453+
layer_list_sd.append(layer_sd);
454+
}
455+
LLSD mask_list_sd;
456+
LLSD info_sd;
457+
sd["layers"] = layer_list_sd;
458+
sd["masks"] = mask_list_sd;
459+
sd["info"] = info_sd;
460460
}
461461

462462

indra/llappearance/lltexlayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ class LLTexLayerSet
220220

221221
static bool sHasCaches;
222222

223-
virtual void asLLSD(LLSD& sd) const;
223+
virtual void asLLSD(LLSD& sd) const;
224224

225225
protected:
226226
typedef std::vector<LLTexLayerInterface *> layer_list_t;

indra/llappearanceutility/appearance_utility.cpp

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -34,33 +34,33 @@
3434

3535
int main(int argc, char** argv)
3636
{
37-
// Create an application instance.
38-
ll_init_apr();
39-
LLAppAppearanceUtility* app = new LLAppAppearanceUtility(argc, argv);
37+
// Create an application instance.
38+
ll_init_apr();
39+
LLAppAppearanceUtility* app = new LLAppAppearanceUtility(argc, argv);
4040

41-
// Assume success, unless exception is thrown.
42-
EResult rv = RV_SUCCESS;
43-
try
44-
{
45-
// Process command line and initialize system.
46-
if (app->init())
47-
{
48-
// Run process.
49-
app->frame();
50-
}
51-
}
52-
catch (LLAppException& e)
53-
{
54-
// Deal with errors.
55-
rv = e.getStatusCode();
56-
}
41+
// Assume success, unless exception is thrown.
42+
EResult rv = RV_SUCCESS;
43+
try
44+
{
45+
// Process command line and initialize system.
46+
if (app->init())
47+
{
48+
// Run process.
49+
app->frame();
50+
}
51+
}
52+
catch (LLAppException& e)
53+
{
54+
// Deal with errors.
55+
rv = e.getStatusCode();
56+
}
5757

58-
// Clean up application instance.
59-
app->cleanup();
60-
delete app;
61-
ll_cleanup_apr();
58+
// Clean up application instance.
59+
app->cleanup();
60+
delete app;
61+
ll_cleanup_apr();
6262

63-
return (int) rv;
63+
return (int) rv;
6464
}
6565

6666

0 commit comments

Comments
 (0)