Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <jestedfa@microsoft.com>2019-12-11 22:32:20 +0300
committerJeffrey Stedfast <jestedfa@microsoft.com>2019-12-11 22:32:20 +0300
commit49a0cd4b98a8283c3b05c1e89b8b4485d66aa89b (patch)
treecf9e7eda611b91539755c09755607b460e84caa1 /main/src/addins/MonoDevelop.Autotools
parent7511f1cb15853a82b544ea40164b2e2f59f51db7 (diff)
[Core] Stop using obsolete Counter++/-- and use Inc(1) or Dec(1) instead
Diffstat (limited to 'main/src/addins/MonoDevelop.Autotools')
-rw-r--r--main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs b/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs
index 8fa40ae4cb..4965f364d5 100644
--- a/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs
+++ b/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs
@@ -262,7 +262,7 @@ namespace MonoDevelop.Autotools
using (StreamWriter sw = new StreamWriter (fileName))
sw.Write (content);
- UpdatedMakefiles++;
+ UpdatedMakefiles.Inc (1);
}
void ThrowMakefileVarNotFound (string var)